Standardize tag regexps
[org-mode/org-tableheadings.git] / etc / ORG-NEWS
blobabebe08feaf6441b1f6cb9a2dc79d7f1cb978a59
1 ORG NEWS -- history of user-visible changes.   -*- mode: org; coding: utf-8 -*-
3 #+STARTUP: overview
5 #+LINK: doc https://orgmode.org/worg/doc.html#%s
6 #+LINK: git https://code.orgmode.org/bzg/org-mode/commit/%s
8 Copyright (C) 2012-2018 Free Software Foundation, Inc.
9 See the end of the file for license conditions.
11 Please send Org bug reports to mailto:emacs-orgmode@gnu.org.
13 * Version 9.2
14 ** Incompatible changes
15 *** Removal of OrgStruct mode mode and radio lists
17 OrgStruct minor mode and radio lists mechanism (~org-list-send-list~
18 and ~org-list-radio-lists-templates~) are removed from the code base.
20 *** Change to Noweb expansion
22 Expansion check =:noweb-ref= only if no matching named block is found
23 in the buffer.  As a consequence, any =:noweb-ref= value matching the
24 name of a source block in the buffer is ignored. A simple fix is to
25 give every concerned source-block, including the named one, a new,
26 unique, Noweb reference.
28 #+BEGIN_SRC org
29   ,#+NAME: foo
30   ,#+BEGIN_SRC emacs-lisp
31     1
32   ,#+END_SRC
34   ,#+BEGIN_SRC emacs-lisp :noweb-ref foo
35     2
36   ,#+END_SRC
38   ,#+BEGIN_SRC emacs-lisp :noweb yes
39     <<foo>>
40   ,#+END_SRC
41 #+END_SRC
43 should become
45 #+BEGIN_SRC org
46   ,#+NAME: foo
47   ,#+BEGIN_SRC emacs-lisp :noweb-ref bar
48     1
49   ,#+END_SRC
51   ,#+BEGIN_SRC emacs-lisp :noweb-ref bar
52     2
53   ,#+END_SRC
55   ,#+BEGIN_SRC emacs-lisp :noweb yes
56     <<bar>>
57   ,#+END_SRC
58 #+END_SRC
60 *** Change ~org-calendar-to-agenda-key~ value
62 Default value and accepted value types changed.  See [[doc:org-calendar-to-agenda-key][docstring]] for
63 details.
65 *** Change ~org-structure-template-alist~ value
67 With the new template expansion mechanism (see
68 [[*~org-insert-structure-template~]] and =org-tempo.el=), the variable
69 changed its data type.  See docstring for details.
71 *** Change ~org-set-effort~ signature
72 See docstring for details.
73 *** Placeholders in =(eval ...)= macros are always strings
75 Within =(eval ...)= macros, =$1=-like placeholders are always replaced
76 with a string.  As a consequence, they must not be enclosed within
77 quotes. As an illustration, consider the following, now valid,
78 examples:
80 #+begin_example
81   ,#+macro: join (eval (concat $1 $2))
82   ,#+macro: sum (eval (+ (string-to-number $1) (string-to-number $2)))
84   {{{join(a,b)}}} => ab
85   {{{sum(1,2)}}}  => 3
86 #+end_example
88 However, there is no change in non-eval macros:
90 #+begin_example
91   ,#+macro: disp argument: $1
93   {{{disp(text)}}} => argument: text
94 #+end_example
96 *** =align= STARTUP value no longer narrow table columns
98 Columns narrowing (or shrinking) is now dynamic. See [[*Dynamically
99 narrow table columns]] for details. In particular, it is decoupled from
100 aligning.
102 If you need to automatically shrink columns upon opening an Org
103 document, use =shrink= value instead, or in addition to align:
105 #+BEGIN_EXAMPLE
106 ,#+STARTUP: align shrink
107 #+END_EXAMPLE
109 *** ~org-get-tags~ meaning change
111 Function ~org-get-tags~ used to return local tags to the current
112 headline.  It now returns the all the inherited tags in addition to
113 the local tags.  In order to get the old behaviour back, you can use:
115 : (org-get-tags nil t)
117 *** Alphabetic sorting in tables and lists
119 When sorting alphabetically, ~org-table-sort-lines~ and ~org-sort-list~
120 now sort according to the locale’s collation rules instead of by
121 code-point.
123 ** New features
124 *** Add ~:results link~ support for Babel
126 With this output format, create a link to the file specified in
127 ~:file~ header argument, without actually writing any result to it:
129 #+begin_example
130 ,#+begin_src shell :dir "data/tmp" :results link :file "crackzor_1.0.c.gz"
131 wget -c "http://ben.akrin.com/crackzor/crackzor_1.0.c.gz"
132 ,#+end_src
134 ,#+results:
135 [[file:data/tmp/crackzor_1.0.c.gz]]
136 #+end_example
138 *** Add ~:session~ support of ob-js for js-comint
139 #+begin_src js :session "*Javascript REPL*"
140 console.log("stardiviner")
141 #+end_src
142 *** Add ~:session~ support of ob-js for Indium
143 #+begin_src js :session "*JS REPL*"
144 console.log("stardiviner")
145 #+end_src
146 *** Add ~:session~ support of ob-js for skewer-mode
147 #+begin_src js :session "*skewer-repl*"
148 console.log("stardiviner")
149 #+end_src
150 *** Add support for links to LaTeX equations in HTML export
151 Use MathJax links when enabled (by ~org-html-with-latex~), otherwise
152 add a label to the rendered equation.
153 *** Org Tempo may used for snippet expansion of structure template.
154 See manual and the commentary section in ~org-tempo.el~ for details.
155 *** Exclude unnumbered headlines from table of contents
156 Set their =UNNUMBERED= property to the special =notoc= value.  See
157 manual for details.
158 *** ~org-archive~ functions update status cookies
160 Archiving headers through ~org-archive-subtree~ and
161 ~org-archive-to-archive-sibling~ such as the ones listed below:
163 #+BEGIN_SRC org
164   ,* Top [1/2]
165   ,** DONE Completed
166   ,** TODO Working
167 #+END_SRC
169 Will update the status cookie in the top level header.
171 *** Disable =org-agenda-overriding-header= by setting to empty string
173 The ~org-agenda-overriding-header~ inserted into agenda views can now
174 be disabled by setting it to an empty string.
176 *** Dynamically narrow table columns
178 With ~C-c TAB~, it is now possible to narrow a column to the width
179 specified by a width cookie in the column, or to 1 character if there
180 is no such cookie.  The same keybinding expands a narrowed column to
181 its previous state.
183 Editing the column automatically expands the whole column to its full
184 size.
186 *** =org-columns-summary-types= entries can take an optional COLLECT function
188 You can use this to make collection of a property from an entry
189 conditional on another entry. E.g. given this configuration:
191 #+BEGIN_SRC emacs-lisp
192   (defun custom/org-collect-confirmed (property)
193     "Return `PROPERTY' for `CONFIRMED' entries"
194     (let ((prop (org-entry-get nil property))
195           (confirmed (org-entry-get nil "CONFIRMED")))
196       (if (and prop (string= "[X]" confirmed))
197           prop
198         "0")))
200   (setq org-columns-summary-types
201         '(("X+" org-columns--summary-sum
202            custom/org-collect-confirmed)))
203 #+END_SRC
205 You can have a file =bananas.org= containing:
207 #+BEGIN_SRC org
208   ,#+columns: %ITEM %CONFIRMED %Bananas{+} %Bananas(Confirmed Bananas){X+}
210   ,* All shipments
211   ,** Shipment 1
212      :PROPERTIES:
213      :CONFIRMED: [X]
214      :Bananas:  4
215      :END:
217   ,** Shipment 2
218      :PROPERTIES:
219      :CONFIRMED: [ ]
220      :BANANAS:  7
221      :END:
222 #+END_SRC
224 ... and when going to the top of that file and entering column view
225 you should expect to see something like:
227 | ITEM          | CONFIRMED | Bananas | Confirmed Bananas |
228 |---------------+-----------+---------+-------------------|
229 | All shipments |           |      11 |                 4 |
230 | Shipment 1    | [X]       |       4 |                 4 |
231 | Shipment 2    | [ ]       |       7 |                 7 |
233 #+BEGIN_EXAMPLE
234   ,#+STARTUP: shrink
235 #+END_EXAMPLE
236 *** Add support for Oracle's database alias in Babel blocks
237 =ob-sql= library already support running SQL blocks against an Oracle
238 database using ~sqlplus~.  Now it's possible to use alias names
239 defined in =TNSNAMES= file instead of specifying full connection
240 parameters.  See example bellow.
242 #+BEGIN_SRC org
243   you can use the previous full connection parameters
244   ,#+BEGIN_SRC sql :engine oracle :dbuser me :dbpassword my_insecure_password :database my_db_name :dbhost my_db_host :dbport 1521
245   select sysdate from dual;
246   ,#+END_SRC
248   or the alias defined in your TNSNAMES file
249   ,#+BEGIN_SRC sql :engine oracle :dbuser me :dbpassword my_insecure_password :database my_tns_alias
250   select sysdate from dual;
251   ,#+END_SRC
252 #+END_SRC
254 ** New functions
255 *** ~org-insert-structure-template~
257 This function can be used to wrap existing text of Org elements in
258 a #+BEGIN_FOO/#+END_FOO block.  Bound to C-c C-x w by default.
260 *** ~org-export-excluded-from-toc-p~
262 See docstring for details.
264 *** ~org-timestamp-to-time~
265 *** ~org-timestamp-from-string~
266 *** ~org-timestamp-from-time~
267 *** ~org-attach-dired-to-subtree~
269 See docstring for details.
271 ** Removed functions
272 *** ~org-outline-overlay-data~
273 Use ~org-save-outline-visibility~ instead.
274 *** ~org-set-outline-overlay-data~
275 Use ~org-save-outline-visibility~ instead.
276 *** ~org-get-string-indentation~
277 It was not used throughout the code base.
278 *** ~org-fix-indentation~
279 It was not used throughout code base.
280 *** ~org-context-p~
281 Use ~org-element-at-point~ instead.
282 *** ~org-try-structure-completion~
283 Org Tempo may be used as a replacement.  See details above.
284 ** Removed variables
286 *** org-babel-use-quick-and-dirty-noweb-expansion
288 ** Miscellaneous
290 *** New default value for ~org-texinfo-table-scientific-notation~
292 It is now nil, which means numbers in scientific notation are not
293 handled specially by default.
295 *** New default value for ~org-latex-table-scientific-notation~
297 It is now nil, which means numbers in scientific notation are not
298 handled specially by default.
300 *** New face: ~org-upcoming-distant-deadline~
302 It is meant to be used as the face for distant deadlines, see
303 ~org-agenda-deadline-faces~
305 *** ~org-paste-subtree~ no longer breaks sections
307 Unless point is at the beginning of a headline, ~org-paste-subtree~
308 now pastes the tree before the next visible headline.  If you need to
309 break the section, use ~org-yank~ instead.
311 *** ~org-table-insert-column~ inserts a column to the right
313 It used to insert it on the left.  With this change,
314 ~org-table-insert-column~ and ~org-table-delete-column~ are
315 reciprocal.
317 *** ~org-publish-resolve-external-link~ accepts a new optional argument.
318 *** ~org-irc.el~ now supports exporting =irc:= links properly
320 Previously, irc links were exported by ~ox-md~ and ~ox-html~ as normal
321 file links, which lead to them being broken in web browsers. Now both
322 of these exporters will properly export to =irc:= links, which will
323 open properly in irc clients from web browsers.
325 *** ~org-comment-dwim~ (bound to =M-;=) now comments headings, if point is on a heading
326 *** Add support for open source block in window below
328 Set option ~org-src-window-setup~ to ~split-window-below~.
330 *** Alphabetic sorting in headings and tags now uses the locale’s sorting rules
332 When sorting alphabetically, ~org-sort-entries~ and
333 ~org-tags-sort-function~ now sort according to the locale’s collation
334 rules instead of by code-point.
335 * Version 9.1
337 ** Incompatible changes
339 *** Variables relative to clocksum duration are obsolete
341 ~org-time-clocksum-format~, ~org-time-clocksum-use-fractional~ and
342 ~org-time-clocksum-fractional-format~ are obsolete.  If you changed
343 them, consider modifying ~org-duration-format~ instead.
345 Variable ~org-time-clocksum-use-effort-durations~ is also obsolete.
346 Consider setting ~org-duration-units~ instead.
348 *** ~org-at-timestamp-p~ optional argument accepts different values
350 See docstrings for the allowed values.  For backward compatibility,
351 ~(org-at-timestamp-p t)~ is still supported, but should be updated
352 accordingly.
354 *** ~org-capture-templates~ no longer accepts S-expressions as file names
356 Since functions are allowed there, a straightforward way to migrate
357 is to turn, e.g.,
359 : (file (sexp))
361 into
363 : (file (lambda () (sexp)))
365 *** Deleted contributed packages
367 =org-ebib.el, =org-bullets.el= and =org-mime.el= have been deleted
368 from the contrib/ directory.
370 You can now find them here :
372 - https://github.com/joostkremers/ebib
373 - https://github.com/sabof/org-bullets
374 - https://github.com/org-mime/org-mime
376 *** Change ~org-texinfo-classes~ value
377 The value cannot support functions to create sectioning commands
378 anymore.  Also, the sectioning commands should include commands for
379 appendices.  See the docstring for more information.
380 *** Removal of ~:sitemap-sans-extension~
382 The publishing property is no longer recognized, as a consequence of
383 changes to site-map generation.
385 You can get the same functionality by setting ~:sitemap-format-entry~
386 to the following
388 #+BEGIN_SRC elisp
389 (lambda (entry style project)
390   (cond ((not (directory-name-p entry))
391          (format "[[file:%s][%s]]"
392                  (file-name-sans-extension entry)
393                  (org-publish-find-title entry project)))
394         ((eq style 'tree) (file-name-nondirectory (directory-file-name entry)))
395         (t entry)))
396 #+END_SRC
398 *** Change signature for ~:sitemap-function~
400 ~:sitemap-function~ now expects to be called with two arguments.  See
401 ~org-publish-project-alist~ for details.
403 *** Change signature for some properties in ~org-list-to-generic~
405 ~:istart~, ~:icount~, ~:iend~ and ~:isep~ now expect the type of the
406 list as their first argument.
408 *** Change signature for ~org-get-repeater~
409 The optional argument is now a string to extract the repeater from.
410 See docstring for details.
412 *** Change signature for ~org-time-string-to-time~
413 See docstring for changes.
415 *** Change order of items in ~org-agenda-time-grid~
416 ~org-agenda-time-grid~ gained an extra item to allow users to customize
417 the string displayed after times in the agenda. See docstring for
418 details.
420 *** ~tags-todo~ custom searches now include DONE keywords
422 Use "/!" markup when filtering TODO keywords to get only not-done TODO
423 keywords.
425 *** ~org-split-string~ returns ~("")~ when called on an empty string
426 It used to return nil.
427 *** Removal of =ob-scala.el=
429 See [[https://github.com/ensime/emacs-scala-mode/issues/114][this github issue]].
431 You can use =ob-scala.el= as packaged in scala-mode, available from the
432 MELPA repository.
434 ** New features
435 *** iCalendar export uses inheritance for TIMEZONE and LOCATION properties
436 Both these properties can be inherited during iCalendar export,
437 depending on the value of ~org-use-property-inheritance~.
438 *** iCalendar export respects a TIMEZONE property
439 Set the TIMEZONE property on an entry to specify a time zone for that
440 entry only during iCalendar export.  The property value should be
441 specified as in "Europe/London".
442 *** ~org-attach~ can move directory contents
443 When setting a new directory for an entry, org-attach offers to move
444 files over from the old directory.  Using a prefix arg will reset the
445 directory to old, ID based one.
446 *** New Org duration library
447 This new library implements tools to read and print time durations in
448 various formats (e.g., "H:MM", or "1d 2h 3min"...).
450 See ~org-duration-to-minutes~ and ~org-duration-from-minutes~
451 docstrings.
453 *** Agenda
454 **** New variable : ~org-agenda-show-future-repeats~
455 **** New variable : ~org-agenda-prefer-last-repeat~
456 **** New variable : ~org-deadline-past-days~
457 See docstring for details.
458 **** Binding C-c C-x < for ~org-agenda-set-restriction-lock-from-agenda~
459 **** New auto-align default setting for =org-agenda-tags-column=
461 =org-agenda-tags-column= can now be set to =auto=, which will
462 automatically align tags to the right edge of the window.  This is now
463 the default setting.
464 *** New value for ~org-publish-sitemap-sort-folders~
466 The new ~ignore~ value effectively allows toggling inclusion of
467 directories in published site-maps.
469 *** Babel
471 **** Scheme: support for tables
472 **** Scheme: new variable: ~org-babel-scheme-null-to~
474 This new custom option allows you to use an empty list or null symbol to
475 format the table output, initially assigned to ~hlines~.
477 **** Scheme: new header ~:prologue~
479 A new block code header has been created for Org Babel that enables
480 developers to prepend code to the scheme block being processed.
482 Multiple ~:prologue~ headers can be added each of them using a string
483 with the content to be added.
485 The scheme blocks are prepared by surrounding the code in the block
486 with a let form. The content of the ~:prologue~ headers are prepended
487 before this let form.
489 **** Support for hledger accounting reports added
490 **** Clojure: new setting ~org-babel-clojure-sync-nrepl-timeout~
492 Creation of a new setting to specify the Cider timeout.  By setting
493 the =org-babel-clojure-sync-nrepl-timeout= setting option.  The value
494 is in seconds and if set to =nil= then no timeout will occur.
495 **** Clojure: new header ~:show-process~
497 A new block code header has been created for Org Babel that enables
498 developers to output the process of an ongoing process into a new
499 window/buffer.
501 You can tell Org Babel to output the process of a running code block.
503 To show that output you only have to specify the =:show-process=
504 option in the code block's header like this:
506 #+begin_example
507 ,#+BEGIN_SRC clojure :results output :show-process t
508   (dotimes [n 10]
509     (println n ".")
510     (Thread/sleep 500))
511 ,#+END_SRC
512 #+end_example
514 If =:show-process= is specified that way, then when you will run the
515 code using =C-c C-c= a new window will open in Emacs.  Everything that
516 is output by the REPL will immediately be added to that new window.
518 When the processing of the code is finished, then the window and its
519 buffer will be closed and the results will be reported in the
520 =#+RESULTS= section.
522 Note that the =:results= parameter's behavior is *not* changed.  If
523 =silent= is specified, then no result will be displayed.  If =output=
524 is specified then all the output from the window will appears in the
525 results section.  If =value= is specified, then only the last returned
526 value of the code will be displayed in the results section.
528 **** Maxima: new headers ~:prologue~ and ~:epilogue~
529 Babel options ~:prologue~ and ~:epilogue~ have been implemented for
530 Maxima src blocks which prepend and append, respectively, the given
531 code strings.  This can be useful for specifying formatting settings
532 which would add clutter to exported code.  For instance, you can use
533 this ~:prologue "fpprintprec: 2; linel: 50;"~ for presenting Maxima
534 results in a beamer presentation.
535 **** PlantUML: add support for header arguments
537 [[http://plantuml.com/][Plantuml]] source blocks now support the [[https://orgmode.org/manual/prologue.html#prologue][~:prologue~]], [[https://orgmode.org/manual/epilogue.html#epilogue][~:epilogue~]] and
538 [[https://orgmode.org/manual/var.html#var][~:var~]] header arguments.
540 **** SQL: new engine added ~sqsh~
542 A new engine was added to support ~sqsh~ command line utility for use
543 against Microsoft SQL Server or Sybase SQL server.
545 More information on ~sqsh~ can be found here: [[https://sourceforge.net/projects/sqsh/][sourceforge/sqsh]]
547 To use ~sqsh~ in an *sql* =SRC_BLK= set the =:engine= like this:
549 #+begin_example
550 ,#+BEGIN_SRC sql :engine sqsh :dbhost my_host :dbuser master :dbpassword pass :database support
551 Select * From Users
552 Where clue > 0
553 ,#+END_SRC
554 #+end_example
556 **** SQL: new engine added =vertica=
558 A new engine was added to support vsql command line utility for use
559 against HP Vertica.
561 More information on =vsql= can be found here: [[https://my.vertica.com/docs/7.2.x/HTML/index.htm#Authoring/ConnectingToHPVertica/vsql/UsingVsql.htm][my.vertica.com]]
563 To use =vertica= in an sql =SRC_BLK= set the =:engine= like this:
565 #+BEGIN_EXAMPLE
566   ,#+BEGIN_SRC sql :engine vertica :dbhost my_host :dbuser dbadmin :dbpassword pw :database vmart
567   SELECT * FROM nodes;
568   ,#+END_SRC
569 #+END_EXAMPLE
570 **** C++: New header ~:namespaces~
572 The new ~:namespaces~ export option can be used to specify namespaces
573 to be used within a C++ org source block.  Its usage is similar to
574 ~:includes~, in that it can accept multiple, space-separated
575 namespaces to use.  This header is equivalent to adding ~using
576 namespace <name>;~ in the source block. Here is a "Hello World" in C++
577 using ~:namespaces~:
579 #+begin_example
580   ,#+BEGIN_SRC C++ :results output :namespaces std :includes <iostream>
581     cout << "Hello World" << endl;
582   ,#+END_SRC
583 #+end_example
585 **** Support for Vala language
587 [[https://wiki.gnome.org/Projects/Vala][Vala]] language blocks support two special header arguments:
589 - ~:flags~ passes arguments to the compiler
590 - ~:cmdline~ passes commandline arguments to the generated executable
592 Support for [[https://orgmode.org/manual/var.html#var][~:var~]] does not exist yet, also there is no [[https://orgmode.org/manual/session.html#session][~:session~]]
593 support because Vala is a compiled language.
595 The Vala compiler binary can be changed via the ~defcustom~
596 ~org-babel-vala-compiler~.
598 *** New ~function~ scope argument for the Clock Table
599 Added a nullary function that returns a list of files as a possible
600 argument for the scope of the clock table.
601 *** Export
602 **** Implement vernacular table of contents in Markdown exporter
603 Global table of contents are generated using vanilla Markdown syntax
604 instead of HTML.  Also #+TOC keyword, including local table of
605 contents, are now supported.
606 **** Add Slovenian translations
607 **** Implement ~org-export-insert-image-links~
608 This new function is meant to be used in back-ends supporting images
609 as descriptions of links, a.k.a. image links.  See its docstring for
610 details.
611 **** New macro : ~{{{n}}}~
612 This macro creates and increment multiple counters in a document.  See
613 manual for details.
614 **** Add global macros through ~org-export-global-macros~
615 With this variable, one can define macros available for all documents.
616 **** New keyword ~#+EXPORT_FILE_NAME~
617 Similarly to ~:EXPORT_FILE_NAME:~ property, this keyword allows the
618 user to specify the name of the output file upon exporting the
619 document.  This also has an effect on publishing.
620 **** Horizontal rules are no longer ignored in LaTeX table math mode
621 **** Use ~compilation-mode~ for compilation output
622 **** Plain lists accept a new ~:separator~ attribute in Texinfo
624 The new ~:separator~ attribute splits a tag from a description list
625 item into multiple parts.  This allows to have two-column tables with
626 multiple entries in the first column.  See manual for more details.
628 **** ~latex-environment~ elements support ~caption~ keywords for LaTeX export
629 *** ~org-edit-special~ can edit LaTeX environments
631 Using ~C-c '~ on a LaTeX environment opens a sub-editing buffer.  By
632 default, major mode in that buffer is ~latex-mode~, but it can be
633 changed by configuring ~org-src-lang-modes~.
635 *** ~org-list-to-generic~ includes a new property: ~:ifmt~
637 ~:ifmt~ is a function to be called on the body of each item.  See
638 ~org-list-to-generic~ documentation for details.
640 *** New variable : ~org-bibtex-headline-format-function~
641 This allow to use a different title than entry title.
643 *** ~org-attach~ supports attaching files from URLs
645 Using ~C-c C-a u~ prompts for a URL pointing to a file to be attached
646 to the document.
648 *** New option for ~org-refile-use-outline-path~
649 ~org-refile-use-outline-path~ now supports the setting ~buffer-name~,
650 which causes refile targets to be prefixed with the buffer’s
651 name. This is particularly useful when used in conjunction with
652 ~uniquify.el~.
654 *** ~org-file-contents~ now allows the FILE argument to be a URL.
655 This allows ~#+SETUPFILE:~ to accept a URL instead of a local file
656 path.  The URL contents are auto-downloaded and saved to a temporary
657 cache ~org--file-cache~.  A new optional argument ~NOCACHE~ is added
658 to ~org-file-contents~.
660 *** ~org-mode-restart~ now resets the newly added ~org--file-cache~.
661 Using ~C-c C-c~ on any keyword (like ~#+SETUPFILE~) will reset the
662 that file cache.
664 *** New option : ~org-table-duration-hour-zero-padding~
665 This variable allow computed durations in tables to be zero-padded.
667 *** New mode switch for table formulas : =U=
668 This mode omits seconds in durations.
670 ** Removed functions
672 *** Org Timeline
674 This feature has been removed.  Use a custom agenda view, possibly
675 narrowed to current buffer to achieve a similar functionality.
677 *** ~org-agenda-skip-entry-when-regexp-matches~ is obsolete
679 Use ~org-agenda-skip-if~ instead.
681 *** ~org-agenda-skip-subtree-when-regexp-matches~ is obsolete
683 Use ~org-agenda-skip-if~ instead.
685 *** ~org-agenda-skip-entry-when-regexp-matches-in-subtree~ is obsolete
687 Use ~org-agenda-skip-if~ instead.
689 *** ~org-minutes-to-clocksum-string~ is obsolete
691 Use ~org-duration-from-minutes~ instead.
693 *** ~org-hh:mm-string-to-minutes~ is obsolete
695 Use ~org-duration-to-minutes~ instead.
697 *** ~org-duration-string-to-minutes~ is obsolete
699 Use ~org-duration-to-minutes~ instead.
701 *** ~org-gnus-nnimap-cached-article-number~ is removed.
703 This function relied on ~nnimap-group-overview-filename~, which was
704 removed from Gnus circa September 2010.
706 ** Removed options
708 *** ~org-agenda-repeating-timestamp-show-all~ is removed.
710 For an equivalent to a ~nil~ value, set
711 ~org-agenda-show-future-repeats~ to nil and
712 ~org-agenda-prefer-last-repeat~ to ~t~.
714 *** ~org-gnus-nnimap-query-article-no-from-file~ is removed.
716 This variable has no effect, as it was relying on a function that was
717 removed from Gnus circa September 2010.
719 *** ~org-usenet-links-prefer-google~ is obsolete.
721 Use ~org-gnus-prefer-web-links~ instead.
723 *** ~org-publish-sitemap-file-entry-format~ is deprecated
725 One can provide new ~:sitemap-format-entry~ property for a function
726 equivalent to the removed format string.
728 *** ~org-enable-table-editor~ is removed.
730 Setting it to a ~nil~ value broke some other features (e.g., speed
731 keys).
733 *** ~org-export-use-babel~ cannot be set to ~inline-only~
735 The variable is now a boolean.
737 *** ~org-texinfo-def-table-markup~ is obsolete
739 Use ~org-texinfo-table-default-markup~ instead.
741 ** New functions
743 *** ~org-publish-find-property~
745 This function can be used as a tool to format entries in a site-map,
746 in addition to ~org-publish-find-title~ and ~org-publish-find-date~.
748 *** ~org-list-to-org~
750 It is the reciprocal of ~org-list-to-lisp~, which see.
752 *** ~org-agenda-set-restriction-lock-from-agenda~
754 Call ~org-agenda-set-restriction-lock~ from the agenda.
756 ** Miscellaneous
758 *** The Library of Babel now on Worg
760 The library-of-babel.org used to be accessible from the =doc/=
761 directory, distributed with Org’s core.  It is now accessible
762 from the Worg community-driven documentation [[https://orgmode.org/worg/library-of-babel.html][here]].
764 If you want to contribute to it, please see [[https://orgmode.org/worg/org-contribute.html][how to contribute]].
766 *** Allow multiple columns view
768 Columns view is not limited to a single buffer anymore.
769 *** Org Attach obeys ~dired-dwim-target~
771 When a Dired buffer is opened next to the Org document being edited,
772 the prompt for file to attach can start in the Dired buffer's
773 directory if `dired-dwim-target' in non-nil.
775 *** ~org-fill-paragraph~ can now fill a whole region
776 *** More specific anniversary descriptions
778 Anniversary descriptions (used in the agenda view, for instance)
779 include the point in time, when the anniversary appears.  This is,
780 in its most general form, just the date of the anniversary.  Or
781 more specific terms, like "today", "tomorrow" or "in n days" are
782 used to describe the time span.
784 This feature allows to automatically change the description of an
785 anniversary, depending on if it occurs in the next few days or
786 far away in the future.
788 *** Computed dates in tables appear as inactive time stamps
790 *** Save point before opening a file with an unknown search option
792 When following a file link with a search option (e.g., =::#custom-id=)
793 that doesn't exist in the target file, save position before raising an
794 error.  As a consequence, it is possible to jump back to the original
795 document with ~org-mark-ring-goto~ (default binding =C-c &=).
797 *** ~org-get-heading~ accepts two more optional arguments
799 See docstring for details.
801 *** New option ~org-babel-uppercase-example-markers~
803 This variable is a ~defcustom~ and replaces the variable
804 ~org-babel-capitalize-example-region-markers~, which is a ~defvar~ and
805 is now obsolete.
806 *** =INCLUDE= keywords in commented trees are now ignored.
807 *** Default value for ~org-texinfo-text-markup-alist~ changed.
809 Now ~=...=~ markup uses ~@samp{}~ instead of ~@verb{}~.  You can use
810 ~@verb{}~ again by customizing the variable.
811 *** Texinfo exports example blocks as ~@example~
812 *** Texinfo exports inline src blocks as ~@code{}~
813 *** Texinfo default table markup is ~@asis~
814 It used to be ~@samp~ but ~@asis~ is neutral and, therefore, more
815 suitable as a default value.
816 *** Texinfo default process includes ~--no-split~ option
817 *** New entities : ~\dollar~ and ~\USD~
818 *** Support for date style URLs in =org-protocol://open-source=
819     URLs like =https://cool-blog.com/2017/05/20/cool-post/= are
820     covered by rewrite rules.
822 *** Add (C) =COMMENT= support to ~org-structure-template-alist~
824 * Version 9.0
826 ** Incompatible changes
828 *** Emacs 23 support has been dropped
830 From now on, Org expects at least Emacs 24.3, although Emacs 24.4 or
831 above is suggested.
833 *** XEmacs support has been dropped
835 Incomplete compatibility layer with XEmacs has been removed.  If you
836 want to take over maintenance of this compatibility, please contact
837 our mailing list.
839 *** New syntax for export blocks
841 Export blocks are explicitly marked as such at the syntax level to
842 disambiguate their parsing from special blocks.  The new syntax is
844 #+BEGIN_SRC org
845 ,#+BEGIN_EXPORT backend
847 ,#+END_EXPORT
848 #+END_SRC
850 instead of
852 #+BEGIN_SRC org
853 ,#+BEGIN_backend
855 ,#+END_backend
856 #+END_SRC
858 As a consequence, =INCLUDE= keywords syntax is modified, e.g.,
860 #+BEGIN_SRC org
861 ,#+INCLUDE: "file.org" HTML
862 #+END_SRC
864 becomes
866 #+BEGIN_SRC org
867 ,#+INCLUDE: "file.org" export html
868 #+END_SRC
870 The following function repairs export blocks and =INCLUDE= keywords
871 using previous syntax:
873 #+BEGIN_SRC emacs-lisp
874 (defun org-repair-export-blocks ()
875   "Repair export blocks and INCLUDE keywords in current buffer."
876   (interactive)
877   (when (eq major-mode 'org-mode)
878     (let ((case-fold-search t)
879           (back-end-re (regexp-opt
880                         '("HTML" "ASCII" "LATEX" "ODT" "MARKDOWN" "MD" "ORG"
881                           "MAN" "BEAMER" "TEXINFO" "GROFF" "KOMA-LETTER")
882                         t)))
883       (org-with-wide-buffer
884        (goto-char (point-min))
885        (let ((block-re (concat "^[ \t]*#\\+BEGIN_" back-end-re)))
886          (save-excursion
887            (while (re-search-forward block-re nil t)
888              (let ((element (save-match-data (org-element-at-point))))
889                (when (eq (org-element-type element) 'special-block)
890                  (save-excursion
891                    (goto-char (org-element-property :end element))
892                    (save-match-data (search-backward "_"))
893                    (forward-char)
894                    (insert "EXPORT")
895                    (delete-region (point) (line-end-position)))
896                  (replace-match "EXPORT \\1" nil nil nil 1))))))
897        (let ((include-re
898               (format "^[ \t]*#\\+INCLUDE: .*?%s[ \t]*$" back-end-re)))
899          (while (re-search-forward include-re nil t)
900            (let ((element (save-match-data (org-element-at-point))))
901              (when (and (eq (org-element-type element) 'keyword)
902                         (string= (org-element-property :key element) "INCLUDE"))
903                (replace-match "EXPORT \\1" nil nil nil 1)))))))))
904 #+END_SRC
906 Moreover, ~:export-block~ keyword used in ~org-export-define-backend~ and
907 ~org-export-define-derived-backend~ is no longer used and needs to be
908 removed.
910 *** Footnotes
912 **** [1]-like constructs are not valid footnotes
914 Using =[1]= as a footnote was already discouraged in the manual, since
915 it introduced too many false-positives in many Org documents.  These
916 constructs are now unsupported.
918 If you used =[N]= in some of your documents, consider turning them into
919 =[fn:N]=.
921 **** /Org Footnote/ library doesn't handle non-Org buffers
923 Commands for footnotes in an Org document no longer try to do
924 something in non-Org ones.  If you need to have footnotes there,
925 consider using the =footnote.el= library, shipped with Emacs.
927 In particular, ~org-footnote-tag-for-non-org-mode-files~ no longer
928 exists.
930 *** ~org-file-apps~ no longer accepts S-expressions as commands
932 The variable now accepts functions of two arguments instead of plain
933 S-expressions.  Replacing an S-expression with an appropriate function
934 is straightforward.  For example
936 : ("pdf" . (foo))
938 becomes
940 : ("pdf" . (lambda (file link) (foo)))
942 *** The ~{{{modification-time}}}~ macro can get time via =vc=
944 The modification time will be determined via =vc.el= if the second
945 argument is non-nil.  See the manual for details.
947 *** Preparation and completion functions in publishing projects change signature
949 Preparation and completion functions are now called with an argument,
950 which is the project property list.  It used to be dynamically scoped
951 through the ~project-plist~ variable.
953 *** Old Babel header properties are no longer supported
955 Using header arguments as property names is no longer possible.  As
956 such, the following
958 #+BEGIN_EXAMPLE
959 ,* Headline
960 :PROPERTIES:
961 :exports: code
962 :var: a=1 b=2
963 :var+: c=3
964 :END:
965 #+END_EXAMPLE
967 should be written instead
969 #+BEGIN_EXAMPLE
970 ,* Headline
971 :PROPERTIES:
972 :header-args: :exports code
973 :header-args+: :var a=1 b=2
974 :header-args+: :var c=3
975 :END:
976 #+END_EXAMPLE
978 Please note that, however, old properties were defined at the source
979 block definition.  Current ones are defined where the block is called.
981 ** New features
983 *** ~org-eww~ has been moved into core
984 *** New org-protocol key=value syntax
986 Org-protocol can now handle query-style parameters such as:
988 #+begin_example
989 org-protocol://store-link?url=http:%2F%2Flocalhost%2Findex.html&title=The%20title
990 org-protocol://capture?template=x&title=Hello&body=World&url=http:%2F%2Fexample.com
991 #+end_example
993 Old-style links such as
994 : org-protocol://store-link:/http:%2F%2Flocalhost%2Findex.html/The%20title
995 continue to be supported.
997 If you have defined your own handler functions for
998 ~org-protocol-protocol-alist~, change them to accept either a property
999 list (for new-style links) or a string (for old-style links).  Use
1000 ~org-protocol-parse-parameters~ to convert old-style links into property
1001 lists.
1003 *** New Org linter library
1005 ~org-lint~ can check syntax and report common issues in Org documents.
1007 *** New option ~date-tree-last~ for ~org-agenda-insert-diary-strategy~
1009 When ~org-agenda-insert-diary-strategy~ is set to ~date-tree-last~, diary
1010 entries are added to last in the date tree.
1012 *** New ~vbar~ entity
1014 ~\vbar~ or ~\vbar{}~ will be exported unconditionally as a =|=,
1015 unlike to existing ~\vert~, which is expanded as ~&vert;~ when using
1016 a HTML derived export back-end.
1018 *** Export
1020 **** New =#+latex_compiler= keyword to set LaTeX compiler.
1022 PDFLaTeX, XeLaTeX, and LuaLaTeX are supported.  See the manual for
1023 details.
1025 **** New option ~org-export-with-broken-links~
1027 This option tells the export process how to behave when encountering
1028 a broken internal link.  See its docstring for more information.
1030 **** Attributes support in custom language environments for LaTeX export
1032 Custom language environments for LaTeX export can now define the
1033 string to be inserted during export, using attributes to indicate the
1034 position of the elements. See variable ~org-latex-custom-lang-environments~
1035 for more details.
1037 **** New Texinfo ~options~ attribute on special blocks
1039 Using ~:options~ as a Texinfo attribute, it is possible to add
1040 information to custom environments.  See manual for details.
1042 **** New HTML ~id~ attributes on special, example and quote blocks
1044 If the block has a =#+NAME:= attribute assigned, then the HTML element
1045 will have an ~id~ attribute with that name in the HTML export. This
1046 enables one to create links to these elements in other places, e.g.,
1047 ~<a href="#name">text</a>~.
1049 **** Listings with captions are now numbered in HTML export
1051 The class associated to the numbering is "listing-number".  If you
1052 don't want these blocks to be numbered, as it was the case until now,
1053 You may want to add ~.listing-number { display: none; }~ to the CSS
1054 used.
1056 **** Line Numbering in SRC/EXAMPLE blocks support arbitrary start number
1058 The ~-n~ option to ~SRC~ and ~EXAMPLE~ blocks can now take a numeric
1059 argument to specify the staring line number for the source or example
1060 block.  The ~+n~ option can now take a numeric argument that will be
1061 added to the last line number from the previous block as the starting
1062 point for the SRC/EXAMPLE block.
1064 #+BEGIN_SRC org
1065 ,#+BEGIN_SRC emacs-lisp -n 20
1066 ;; this will export with line number 20
1067 (message "This is line 21")
1068 ,#+END_SRC
1069 ,#+BEGIN_SRC emacs-lisp +n 10
1070 ;; This will be listed as line 31
1071 (message "This is line 32")
1072 ,#+END_SRC
1073 #+END_SRC
1075 **** Allow toggling center for images in LaTeX export
1077 With the global variable ~org-latex-images-centered~ or the local
1078 attribute ~:center~ it is now possible to center an image in LaTeX
1079 export.
1081 **** Default CSS class ~org-svg~ for SVG images in HTML export
1083 SVG images exported in HTML are now by default assigned a CSS class
1084 ~org-svg~ if no CSS class is specified with the ~:class~ attribute. By
1085 default, the CSS styling of class ~org-svg~ specifies an image width of
1086 90\thinsp{}% of the container the image.
1088 **** Markdown footnote export customization
1090 Variables ~org-md-footnotes-section~ and ~org-md-footnote-format~
1091 introduced for =ox-md.el=.  Both new variables define template strings
1092 which can be used to customize the format of the exported footnotes
1093 section and individual footnotes, respectively.
1095 *** Babel
1097 **** Blocks with coderefs labels can now be evaluated
1099 The labels are removed prior to evaluating the block.
1101 **** Support for Lua language
1102 **** Support for SLY in Lisp blocks
1104 See ~org-babel-lisp-eval-fn~ to activate it.
1106 **** Support for Stan language
1108 New ob-stan.el library.
1110 Evaluating a Stan block can produce two different results.
1112 1. Dump the source code contents to a file.
1114    This file can then be used as a variable in other blocks, which
1115    allows interfaces like RStan to use the model.
1117 2. Compile the contents to a model file.
1119    This provides access to the CmdStan interface.  To use this, set
1120    ~org-babel-stan-cmdstan-directory~ and provide a ~:file~ argument
1121    that does not end in ".stan".
1123 For more information and usage examples, visit
1124 https://orgmode.org/worg/org-contrib/babel/languages/ob-doc-stan.html
1126 **** Support for Oracle databases via ~sqlplus~
1128 =ob-sql= library supports running SQL blocks against an Oracle
1129 database using ~sqlplus~.  Use with properties like this (all
1130 mandatory):
1132 #+BEGIN_EXAMPLE
1133 :engine oracle
1134 :dbhost <host.com>
1135 :dbport <1521>
1136 :dbuser <username>
1137 :database <database>
1138 :dbpassword <secret>
1139 #+END_EXAMPLE
1141 **** Improved support to Microsoft SQL Server via ~sqlcmd~
1143 =ob-sql= library removes support to the ~msosql~ engine which uses the
1144 deprecated ~osql~ command line tool, and replaces it with ~mssql~
1145 engine which uses the ~sqlcmd~ command line tool.  Use with properties
1146 like this:
1148 #+BEGIN_EXAMPLE
1149 :engine mssql
1150 :dbhost <host.com>
1151 :dbuser <username>
1152 :dbpassword <secret>
1153 :database <database>
1154 #+END_EXAMPLE
1156 If you want to use the *trusted connection* feature, omit *both* the
1157 =dbuser= and =dbpassword= properties and add =cmdline -E= to the properties.
1159 If your Emacs is running in a Cygwin environment, the =ob-sql= library
1160 can pass the converted path to the =sqlcmd= tool.
1162 **** Improved support of header arguments for postgresql
1164 The postgresql engine in a sql code block supports now ~:dbport~ nd
1165 ~:dbpassword~ as header arguments.
1167 **** Support for additional plantuml output formats
1169 The support for output formats of [[http://plantuml.com/][plantuml]] has been extended to now
1170 include:
1172 All Diagrams:
1173 - png ::
1174 - svg ::
1175 - eps ::
1176 - pdf ::
1177 - vdx ::
1178 - txt :: ASCII art
1179 - utxt :: ASCII art using unicode characters
1181 Class Diagrams:
1182 - xmi ::
1183 - html ::
1185 State Diagrams:
1186 - scxml ::
1188 The output formats are determined by the file extension specified
1189 using the :file property, e.g.:
1191 #+begin_src plantuml :file diagram.png
1192 @startuml
1193 Alice -> Bob: Authentication Request
1194 Bob --> Alice: Authentication Response
1196 Alice -> Bob: Another authentication Request
1197 Alice <-- Bob: another authentication Response
1198 @enduml
1199 #+end_src
1201 Please note that *pdf* *does not work out of the box* and needs additional
1202 setup in addition to plantuml.  See [[http://plantuml.com/pdf.html]] for
1203 details and setup information.
1205 *** Rewrite of radio lists
1207 Radio lists, i.e, Org plain lists in foreign buffers, have been
1208 rewritten to be on par with Radio tables.  You can use a large set of
1209 parameters to control how a given list should be rendered.  See manual
1210 for details.
1212 *** org-bbdb-anniversaries-future
1214 Used like ~org-bbdb-anniversaries~, it provides a few days warning for
1215 upcoming anniversaries (default: 7 days).
1217 *** Clear non-repeated SCHEDULED upon repeating a task
1219 If the task is repeated, and therefore done at least one, scheduling
1220 information is no longer relevant.  It is therefore removed.
1222 See [[git:481719fbd5751aaa9c672b762cb43aea8ee986b0][commit message]] for more information.
1224 *** Support for ISO week trees
1226 ISO week trees are an alternative date tree format that orders entries
1227 by ISO week and not by month.
1229 For example:
1231 : * 2015
1232 : ** 2015-W35
1233 : ** 2015-W36
1234 : *** 2015-08-31 Monday
1236 They are supported in org-capture via ~file+weektree~ and
1237 ~file+weektree+prompt~ target specifications.
1239 *** Accept ~:indent~ parameter when capturing column view
1241 When defining a "columnview" dynamic block, it is now possible to add
1242 an :indent parameter, much like the one in the clock table.
1244 On the other hand, stars no longer appear in an ITEM field.
1246 *** Columns view
1248 **** ~org-columns~ accepts a prefix argument
1250 When called with a prefix argument, ~org-columns~ apply to the whole
1251 buffer unconditionally.
1253 **** New variable : ~org-agenda-view-columns-initially~
1255 The variable used to be a ~defvar~, it is now a ~defcustom~.
1257 **** Allow custom summaries
1259 It is now possible to add new summary types, or override those
1260 provided by Org by customizing ~org-columns-summary-types~, which see.
1262 **** Allow multiple summaries for any property
1264 Columns can now summarize the same property using different summary
1265 types.
1267 *** Preview LaTeX snippets in buffers not visiting files
1268 *** New option ~org-attach-commit~
1270 When non-nil, commit attachments with git, assuming the document is in
1271 a git repository.
1273 *** Allow conditional case-fold searches in ~org-occur~
1275 When set to ~smart~, the new variable ~org-occur-case-fold-search~ allows
1276 to mimic =isearch.el=: if the regexp searched contains any upper case
1277 character (or character class), the search is case sensitive.
1278 Otherwise, it is case insensitive.
1280 *** More robust repeated =ox-latex= footnote handling
1282 Repeated footnotes are now numbered by referring to a label in the
1283 first footnote.
1285 *** The ~org-block~ face is inherited by ~src-blocks~
1287 This works also when =org-src-fontify-natively= is non-nil.  It is also
1288 possible to specify per-languages faces.  See =org-src-block-faces= and
1289 the manual for details.
1291 *** Links are now customizable
1293 Links can now have custom colors, tooltips, keymaps, display behavior,
1294 etc.  Links are now centralized in ~org-link-parameters~.
1296 ** New functions
1298 *** ~org-next-line-empty-p~
1300 It replaces the deprecated ~next~ argument to ~org-previous-line-empty-p~.
1302 *** ~org-show-children~
1304 It is a faster implementation of ~outline-show-children~.
1306 ** Removed functions
1308 *** ~org-agenda-filter-by-tag-refine~ has been removed.
1310 Use ~org-agenda-filter-by-tag~ instead.
1312 *** ~org-agenda-todayp~ is deprecated.
1314 Use ~org-agenda-today-p~ instead.
1316 *** ~org-babel-get-header~ is removed.
1318 Use ~org-babel--get-vars~ or ~assq~ instead, as applicable.
1320 *** ~org-babel-trim~ is deprecated.
1322 Use ~org-trim~ instead.
1324 *** ~org-element-remove-indentation~ is deprecated.
1326 Use ~org-remove-indentation~ instead.
1328 *** ~org-image-file-name-regexp~ is deprecated
1330 Use ~image-file-name-regexp~ instead.
1331 The never-used-in-core ~extensions~ argument has been dropped.
1333 *** ~org-list-parse-list~ is deprecated
1335 Use ~org-list-to-lisp~ instead.
1337 *** ~org-on-heading-p~ is deprecated
1339 A comment to this effect was in the source code since 7.8.03, but
1340 now a byte-compiler warning will be generated as well.
1342 *** ~org-table-p~ is deprecated
1344 Use ~org-at-table-p~ instead.
1346 *** ~org-table-recognize-table.el~ is deprecated
1348 It was not called by any org code since 2010.
1350 *** Various reimplementations of cl-lib functions are deprecated
1352 The affected functions are:
1353 - ~org-count~
1354 - ~org-remove-if~
1355 - ~org-remove-if-not~
1356 - ~org-reduce~
1357 - ~org-every~
1358 - ~org-some~
1360 Additionally, ~org-sublist~ is deprecated in favor of ~cl-subseq~.  Note
1361 the differences in indexing conventions: ~org-sublist~ is 1-based and
1362 end-inclusive; ~cl-subseq~ is 0-based and end-exclusive.
1364 ** Removed options
1366 *** Remove all options related to ~ido~ or ~iswitchb~
1368 This includes ~org-completion-use-iswitchb~ and ~org-completion-use-ido~.
1369 Instead Org uses regular functions, e.g., ~completion-read~ so as to
1370 let those libraries operate.
1372 *** Remove ~org-list-empty-line-terminates-plain-lists~
1374 Two consecutive blank lines always terminate all levels of current
1375 plain list.
1377 *** ~fixltx2e~ is removed from ~org-latex-default-packages-alist~
1379 fixltx2e is obsolete, see LaTeX News 22.
1381 ** Miscellaneous
1382 *** Add Icelandic smart quotes
1383 *** Allow multiple receiver locations in radio tables and lists
1384 *** Allow angular links within link descriptions
1386 It is now allowed to write, e.g.,
1387 ~[[http:orgmode.org][<file:unicorn.png>]]~ as an equivalent to
1388 ~[[http:orgmode.org][file:unicorn.png]]~.  The advantage of the former
1389 is that spaces are allowed within the path.
1391 *** Beamer export back-ends uses ~org-latex-prefer-user-labels~
1392 *** ~:preparation-function~ called earlier during publishing
1394 Functions in this list are called before any file is associated to the
1395 current project.  Thus, they can be used to generate to be published
1396 Org files.
1398 *** Function ~org-remove-indentation~ changes.
1400 The new algorithm doesn't remove TAB characters not used for
1401 indentation.
1403 *** Secure placeholders in capture templates
1405 Placeholders in capture templates are no longer expanded recursively.
1406 However, ~%(...)~ constructs are expanded very late, so you can fill
1407 the contents of the S-exp with the replacement text of non-interactive
1408 placeholders.  As before, interactive ones are still expanded as the
1409 very last step, so the previous statement doesn't apply to them.
1411 Note that only ~%(...)~ placeholders initially present in the
1412 template, or introduced using a file placeholder, i.e., ~%[...]~ are
1413 expanded.  This prevents evaluating potentially malicious code when
1414 another placeholder, e.g., ~%i~ expands to a S-exp.
1416 *** Links stored by ~org-gnus-store-link~ in nnir groups
1418 Since gnus nnir groups are temporary, ~org-gnus-store-link~ now refers
1419 to the article's original group.
1421 *** ~org-babel-check-confirm-evaluate~ is now a function instead of a macro
1423 The calling convention has changed.
1425 *** HTML export table row customization changes
1427 Variable ~org-html-table-row-tags~ has been split into
1428 ~org-html-table-row-open-tag~ and ~org-html-table-row-close-tag~.
1429 Both new variables can be either a string or a function which will be
1430 called with 6 parameters.
1432 *** =ITEM= special property returns headline without stars
1433 *** Rename ~org-insert-columns-dblock~ into ~org-columns-insert-dblock~
1435 The previous name is, for the time being, kept as an obsolete alias.
1437 *** ~org-trim~ can preserve leading indentation.
1439 When setting a new optional argument to a non-nil value, ~org-trim~
1440 preserves leading indentation while removing blank lines at the
1441 beginning of the string.  The behavior is identical for white space at
1442 the end of the string.
1444 *** Function ~org-info-export~ changes.
1446 HTML links created from certain info links now point to =gnu.org= URL's rather
1447 than just to local files. For example info links such as =info:emacs#List
1448 Buffers= used to be converted to HTML links like this:
1450 : <a href="emacs.html#List-Buffers">emacs#List Buffers</a>
1452 where local file =emacs.html= is referenced.
1453 For most folks this file does not exist.
1454 Thus the new behavior is to generate this HTML link instead:
1456 : <a href="https://www.gnu.org/software/emacs/manual/html_mono/emacs.html#List-Buffers">emacs#List Buffers</a>
1458 All emacs related info links are similarly translated plus few other
1459 =gnu.org= manuals.
1461 *** Repeaters with a ~++~ interval and a time can be shifted to later today
1463 Previously, if a recurring task had a timestamp of
1464 ~<2016-01-01 Fri 20:00 ++1d>~ and was completed on =2016-01-02= at
1465 =08:00=, the task would skip =2016-01-02= and would be rescheduled for
1466 =2016-01-03=.  Timestamps with ~++~ cookies and a specific time will
1467 now shift to the first possible future occurrence, even if the
1468 occurrence is later the same day the task is completed.  (Timestamps
1469 already in the future are still shifted one time further into the
1470 future.)
1472 *** ~org-mobile-action-alist~ is now a defconst
1474 It used to be a defcustom, with a warning that it shouldn't be
1475 modified anyway.
1477 *** ~file+emacs~ and ~file+sys~ link types are deprecated
1479 They are still supported in Org 9.0 but will eventually be removed in
1480 a later release.  Use ~file~ link type along with universal arguments
1481 to force opening it in either Emacs or with system application.
1483 *** New defcustom ~org-babel-J-command~ stores the j command
1484 *** New defalias ~org-babel-execute:j~
1486 Allows J source blocks be indicated by letter j.  Previously the
1487 indication letter was solely J.
1489 *** ~org-open-line~ ignores tables at the very beginning of the buffer
1491 When ~org-special-ctrl-o~ is non-nil, it is impractical to create
1492 a blank line above a table at the beginning of the document. Now, as
1493 a special case, ~org-open-line~ behaves normally in this situation.
1495 *** ~org-babel-hash-show-time~ is now customizable
1497 The experimental variable used to be more or less confidential, as
1498 a ~defvar~.
1500 *** New ~:format~ property to parsed links
1502 It defines the format of the original link.  Possible values are:
1503 ~plain~, ~bracket~ and ~angle~.
1505 * Version 8.3
1507 ** Incompatible changes
1509 *** Properties drawers syntax changes
1511 Properties drawers are now required to be located right after a
1512 headline and its planning line, when applicable.
1514 It will break some documents as TODO states changes were sometimes
1515 logged before the property drawer.
1517 The following function will repair them:
1519 #+BEGIN_SRC emacs-lisp
1520 (defun org-repair-property-drawers ()
1521   "Fix properties drawers in current buffer.
1522 Ignore non Org buffers."
1523   (when (eq major-mode 'org-mode)
1524     (org-with-wide-buffer
1525      (goto-char (point-min))
1526      (let ((case-fold-search t)
1527            (inline-re (and (featurep 'org-inlinetask)
1528                            (concat (org-inlinetask-outline-regexp)
1529                                    "END[ \t]*$"))))
1530        (org-map-entries
1531         (lambda ()
1532           (unless (and inline-re (org-looking-at-p inline-re))
1533             (save-excursion
1534               (let ((end (save-excursion (outline-next-heading) (point))))
1535                 (forward-line)
1536                 (when (org-looking-at-p org-planning-line-re) (forward-line))
1537                 (when (and (< (point) end)
1538                            (not (org-looking-at-p org-property-drawer-re))
1539                            (save-excursion
1540                              (and (re-search-forward org-property-drawer-re end t)
1541                                   (eq (org-element-type
1542                                        (save-match-data (org-element-at-point)))
1543                                       'drawer))))
1544                   (insert (delete-and-extract-region
1545                            (match-beginning 0)
1546                            (min (1+ (match-end 0)) end)))
1547                   (unless (bolp) (insert "\n"))))))))))))
1548 #+END_SRC
1550 *** Using "COMMENT" is now equivalent to commenting with "#"
1552 If you used "COMMENT" in headlines to prevent a subtree from being
1553 exported, you can still do it but all information within the subtree
1554 is now commented out, i.e. no #+OPTIONS line will be parsed or taken
1555 into account when exporting.
1557 If you want to exclude a headline from export while using its contents
1558 for setting options, use =:noexport:= (see =org-export-exclude-tags=.)
1560 *** =#+CATEGORY= keywords no longer apply partially to document
1562 It was possible to use several such keywords and have them apply to
1563 the text below until the next one, but strongly deprecated since Org
1564 5.14 (2008).
1566 =#+CATEGORY= keywords are now global to the document.  You can use node
1567 properties to set category for a subtree, e.g.,
1569 #+BEGIN_SRC org
1570 ,* Headline
1571    :PROPERTIES:
1572    :CATEGORY: some category
1573    :END:
1574 #+END_SRC
1576 *** New variable to control visibility when revealing a location
1578 ~org-show-following-heading~, ~org-show-siblings~, ~org-show-entry-below~
1579 and ~org-show-hierarchy-above~ no longer exist.  Instead, visibility is
1580 controlled through a single variable: ~org-show-context-detail~, which
1581 see.
1583 *** Replace disputed keys again when reading a date
1585 ~org-replace-disputed-keys~ has been ignored when reading date since
1586 version 8.1, but the former behavior is restored again.
1588 Keybinding for reading date can be customized with a new variable
1589 ~org-read-date-minibuffer-local-map~.
1591 *** No default title is provided when =TITLE= keyword is missing
1593 Skipping =TITLE= keyword no longer provides the current file name, or
1594 buffer name, as the title.  Instead, simply ignore the title.
1596 *** Default bindings of =C-c C-n= and =C-c C-p= changed
1598 The key sequences =C-c C-n= and =C-c C-p= are now bound to
1599 ~org-next-visible-heading~ and ~org-previous-visible-heading~
1600 respectively, rather than the =outline-mode= versions of these
1601 functions.  The Org version of these functions skips over inline tasks
1602 (and even-level headlines when ~org-odd-levels-only~ is set).
1604 *** ~org-element-context~ no longer return objects in keywords
1606 ~org-element-context~ used to return objects on some keywords, i.e.,
1607 =TITLE=, =DATE= and =AUTHOR=.  It now returns only the keyword.
1609 *** ~org-timer-default-timer~ type changed from number to string
1611 If you have, in your configuration, something like =(setq
1612 org-timer-default-timer 10)= replace it with =(setq
1613 org-timer-default-timer "10")=.
1615 *** Functions signature changes
1617 The following functions require an additional argument.  See their
1618 docstring for more information.
1620 - ~org-export-collect-footnote-definitions~
1621 - ~org-html-format-headline-function~
1622 - ~org-html-format-inlinetask-function~
1623 - ~org-latex-format-headline-function~
1624 - ~org-latex-format-inlinetask-function~
1625 - ~org-link-search~
1627 ** New features
1629 *** Default lexical evaluation of emacs-lisp src blocks
1631 Emacs-lisp src blocks in babel are now evaluated using lexical
1632 scoping.  There is a new header to control this behavior.
1634 The default results in an eval with lexical scoping.
1635 :lexical yes
1637 This turns lexical scoping off in the eval (the former behavior).
1638 :lexical no
1640 This uses the lexical environment with x=42 in the eval.
1641 :lexical '((x . 42))
1643 *** Behavior of ~org-return~ changed
1645 If point is before or after the headline title, insert a new line
1646 without changing the headline.
1648 *** Hierarchies of tags
1650 The functionality of nesting tags in hierarchies is added to org-mode.
1651 This is the generalization of what was previously called "Tag groups"
1652 in the manual.  That term is now changed to "Tag hierarchy".
1654 The following in-buffer definition:
1656 #+BEGIN_SRC org
1657   ,#+TAGS: [ Group : SubOne SubTwo ]
1658   ,#+TAGS: [ SubOne : SubOne1 SubOne2 ]
1659   ,#+TAGS: [ SubTwo : SubTwo1 SubTwo2 ]
1660 #+END_SRC
1662 Should be seen as the following tree of tags:
1664 - Group
1665   - SubOne
1666     - SubOne1
1667     - SubOne2
1668   - SubTwo
1669     - SubTwo1
1670     - SubTwo2
1672 Searching for "Group" should return all tags defined above.  Filtering
1673 on SubOne filters also it's sub-tags.  Etc.
1675 There is no limit on the depth for the tag hierarchy.
1677 *** Additional syntax for non-unique grouptags
1679 Additional syntax is defined for grouptags if the tags in the group
1680 don't have to be distinct on a heading.
1682 Grouptags had to previously be defined with { }.  This syntax is
1683 already used for exclusive tags and Grouptags need their own,
1684 non-exclusive syntax.  This behavior is achieved with [ ].  Note: { }
1685 can still be used also for Grouptags but then only one of the given
1686 tags can be used on the headline at the same time.  Example:
1688 [ group : sub1 sub2 ]
1690 #+BEGIN_SRC org
1691 ,* Test                                                            :sub1:sub2:
1692 #+END_SRC
1694 This is a more general case than the already existing syntax for
1695 grouptags; { }.
1697 *** Define regular expression patterns as tags
1699 Tags can be defined as grouptags with regular expressions as
1700 "sub-tags".
1702 The regular expressions in the group must be marked up within { }.
1703 Example use:
1705 : #+TAGS: [ Project : {P@.+} ]
1707 Searching for the tag Project will now list all tags also including
1708 regular expression matches for P@.+.  This is good for example for
1709 projects tagged with a common identifier, i.e. P@2014_OrgTags.
1711 *** Filtering in the agenda on grouptags (Tag hierarchies)
1713 Filtering in the agenda on grouptags filters all of the related tags.
1714 Except if a filter is applied with a (double) prefix-argument.
1716 Filtering in the agenda on subcategories does not filter the "above"
1717 levels anymore.
1719 If a grouptag contains a regular expression the regular expression
1720 is also used as a filter.
1722 *** Minor refactoring of ~org-agenda-filter-by-tag~
1724 Now uses the argument ARG and optional argument exclude instead of
1725 strip and narrow.  ARG because the argument has multiple purposes and
1726 makes more sense than strip now.  The term "narrowing" is changed to
1727 exclude.
1729 The main purpose is for the function to make more logical sense when
1730 filtering on tags now when tags can be structured in hierarchies.
1732 *** Babel: support for sed scripts
1734 Thanks to Bjarte Johansen for this feature.
1736 *** Babel: support for Processing language
1738 New ob-processing.el library.
1740 This library implements necessary functions for implementing editing
1741 of Processing code blocks, viewing the resulting sketches in an
1742 external viewer, and HTML export of the sketches.
1744 Check the documentation for more details.
1746 Thanks to Jarmo Hurri for this feature.
1748 *** New behavior for ~org-toggle-latex-fragment~
1750 The new behavior is the following:
1752 - With a double prefix argument or with a single prefix argument when
1753   point is before the first headline, toggle overlays in the whole
1754   buffer;
1756 - With a single prefix argument, toggle overlays in the current
1757   subtree;
1759 - On latex code, toggle overlay at point;
1761 - Otherwise, toggle overlays in the current section.
1763 *** Additional markup with =#+INCLUDE= keyword
1765 The content of the included file can now be optionally marked up, for
1766 instance as HTML.  See the documentation for details.
1768 *** File links with =#+INCLUDE= keyword
1770 Objects can be extracted via =#+INCLUDE= using file links.  It is
1771 possible to include only the contents of the object.  See manual for
1772 more information.
1774 *** Drawers do not need anymore to be referenced in =#+DRAWERS=
1776 One can use a drawer without listing it in the =#+DRAWERS= keyword,
1777 which is now obsolete.  As a consequence, this change also deprecates
1778 ~org-drawers~ variable.
1780 *** ~org-edit-special~ can edit export blocks
1782 Using C-c ' on an export block now opens a sub-editing buffer.  Major
1783 mode in that buffer is determined by export backend name (e.g.,
1784 "latex" \to "latex-mode").  You can define exceptions to this rule by
1785 configuring ~org-src-lang-modes~, which see.
1787 *** Additional =:hline= processing to ob-shell
1789 If the argument =:hlines yes= is present in a babel call, an optional
1790 argument =:hlines-string= can be used to define a string to use as a
1791 representation for the lisp symbol ='hline= in the shell program.  The
1792 default is =hline=.
1794 *** Markdown export supports switches in source blocks
1796 For example, it is now possible to number lines using the =-n= switch in
1797 a source block.
1799 *** New option in ASCII export
1801 Plain lists can have an extra margin by setting ~org-ascii-list-margin~
1802 variable to an appropriate integer.
1804 *** New blocks in ASCII export
1806 ASCII export now supports =#+BEGIN_JUSTIFYRIGHT= and =#+BEGIN_JUSTIFYLEFT=
1807 blocks.  See documentation for details.
1809 *** More back-end specific publishing options
1811 The number of publishing options specific to each back-end has been
1812 increased.  See manual for details.
1814 *** Export inline source blocks
1816 Inline source code was used to be removed upon exporting.  They are
1817 now handled as standard code blocks, i.e., the source code can appear
1818 in the output, depending on the parameters.
1820 *** Extend ~org-export-first-sibling-p~ and ~org-export-last-sibling-p~
1822 These functions now support any element or object, not only headlines.
1824 *** New function: ~org-export-table-row-in-header-p~
1826 *** New function: ~org-export-get-reference~
1828 *** New function: ~org-element-lineage~
1830 This function deprecates ~org-export-get-genealogy~.  It also provides
1831 more features.  See docstring for details.
1833 *** New function: ~org-element-copy~
1835 *** New filter: ~org-export-filter-body-functions~
1837 Functions in this filter are applied on the body of the exported
1838 document, before wrapping it within the template.
1840 *** New :environment parameter when exporting example blocks to LaTeX
1842 : #+ATTR_LATEX: :environment myverbatim
1843 : #+BEGIN_EXAMPLE
1844 : This sentence is false.
1845 : #+END_EXAMPLE
1847 will be exported using =@samp(myverbatim)= instead of =@samp(verbatim)=.
1849 *** Various improvements on radio tables
1851 Radio tables feature now relies on Org's export framework ("ox.el").
1852 ~:no-escape~ parameter no longer exists, but additional global
1853 parameters are now supported: ~:raw~, ~:backend~.  Moreover, there are new
1854 parameters specific to some pre-defined translators, e.g.,
1855 ~:environment~ and ~:booktabs~ for ~orgtbl-to-latex~.  See translators
1856 docstrings (including ~orgtbl-to-generic~) for details.
1858 *** Non-floating minted listings in Latex export
1860 It is not possible to specify =#+attr_latex: :float nil= in conjunction
1861 with source blocks exported by the minted package.
1863 *** Field formulas can now create columns as needed
1865 Previously, evaluating formulas that referenced out-of-bounds columns
1866 would throw an error. A new variable ~org-table-formula-create-columns~
1867 was added to adjust this behavior. It is now possible to silently add
1868 new columns, to do so with a warning or to explicitly ask the user
1869 each time.
1871 *** ASCII plot
1873 Ability to plot values in a column through ASCII-art bars.  See manual
1874 for details.
1876 *** New hook: ~org-archive-hook~
1878 This hook is called after successfully archiving a subtree, with point
1879 on the original subtree, not yet deleted.
1881 *** New option: ~org-attach-archive-delete~
1883 When non-nil, attachments from archived subtrees are removed.
1885 *** New option: ~org-latex-caption-above~
1887 This variable generalizes ~org-latex-table-caption-above~, which is now
1888 deprecated.  In addition to tables, it applies to source blocks,
1889 special blocks and images.  See docstring for more information.
1891 *** New option: ~org-latex-prefer-user-labels~
1893 See the docstring for more information.
1895 *** Export unnumbered headlines
1897 Headlines, for which the property ~UNNUMBERED~ is non-nil, are now
1898 exported without section numbers irrespective of their levels.  The
1899 property is inherited by children.
1901 *** Tables can be sorted with an arbitrary function
1903 It is now possible to specify a function, both programmatically,
1904 through a new optional argument, and interactively with ~f~ or ~F~ keys,
1905 to sort a table.
1907 *** Table of contents can be local to a section
1909 The ~TOC~ keywords now accepts an optional ~local~ parameter.  See manual
1910 for details.
1912 *** Countdown timers can now be paused
1914 ~org-timer-pause-time~ now pauses and restarts both relative and
1915 countdown timers.
1917 *** New option ~only-window~ for ~org-agenda-window-setup~
1919 When ~org-agenda-window-setup~ is set to ~only-window~, the agenda is
1920 displayed as the sole window of the current frame.
1922 *** ~{{{date}}}~ macro supports optional formatting argument
1924 It is now possible to supply and optional formatting argument to
1925 ~{{{date}}}~. See manual for details.
1927 *** ~{{{property}}}~ macro supports optional search argument
1929 It is now possible to supply an optional search option to
1930 ~{{{property}}}~ in order to retrieve remote properties optional.  See
1931 manual for details.
1933 *** New option ~org-export-with-title~
1935 It is possible to suppress the title insertion with ~#+OPTIONS:
1936 title:nil~ or globally using the variable ~org-export-with-title~.
1938 *** New entities family: "\_ "
1940 "\_ " are used to insert up to 20 contiguous spaces in various
1941 back-ends.  In particular, this family can be used to introduce
1942 leading spaces within table cells.
1944 *** New MathJax configuration options
1946 Org uses the MathJax CDN by default.  See the manual and the docstring
1947 of ~org-html-mathjax-options~ for details.
1949 *** New behavior in `org-export-options-alist'
1951 When defining a back-end, it is now possible to specify to give
1952 `parse' behavior on a keyword.  It is equivalent to call
1953 `org-element-parse-secondary-string' on the value.
1955 However, parsed =KEYWORD= is automatically associated to an
1956 =:EXPORT_KEYWORD:= property, which can be used to override the keyword
1957 value during a subtree export.  Moreover, macros are expanded in such
1958 keywords and properties.
1960 *** Viewport support in html export
1962 Viewport for mobile-optimized website is now automatically inserted
1963 when exporting to html.  See ~org-html-viewport~ for details.
1965 *** New ~#+SUBTITLE~ export keyword
1967 Org can typeset a subtitle in some export backends.  See the manual
1968 for details.
1970 *** Remotely edit a footnote definition
1972 Calling ~org-edit-footnote-reference~ (C-c ') on a footnote reference
1973 allows to edit its definition, as long as it is not anonymous, in a
1974 dedicated buffer.  It works even if buffer is currently narrowed.
1976 *** New function ~org-delete-indentation~ bound to ~M-^~
1978 Work as ~delete-indentation~ unless at heading, in which case text is
1979 added to headline text.
1981 *** Support for images in Texinfo export
1983 ~Texinfo~ back-end now handles images.  See the manual for details.
1985 *** Support for captions in Texinfo export
1987 Tables and source blocks can now have captions.  Additionally, lists
1988 of tables and lists of listings can be inserted in the document with
1989 =#+TOC= keyword.
1991 *** Countdown timer support hh:mm:ss format
1993 In addition to setting countdown timers in minutes, they can also be
1994 set using the hh:mm:ss format.
1996 *** Extend ~org-clone-subtree-with-time-shift~
1998 ~org-clone-subtree-with-time-shift~ now accepts 0 as an argument for the
1999 number of clones, which removes the repeater from the original subtree
2000 and creates one shifted, repeating clone.
2002 *** New time block for clock tables: ~untilnow~
2004 It encompasses all past closed clocks.
2006 *** Support for the ~polyglossia~ LaTeX package
2008 See the docstring of ~org-latex-classes~ and
2009 ~org-latex-guess-polyglossia-language~ for details.
2011 *** None-floating tables, graphics and blocks can have captions
2013 *** `org-insert-heading' can be forced to insert top-level headline
2015 ** Removed functions
2017 *** Removed function ~org-translate-time~
2019 Use ~org-timestamp-translate~ instead.
2021 *** Removed function ~org-beamer-insert-options-template~
2023 This function inserted a Beamer specific template at point or in
2024 current subtree.  Use ~org-export-insert-default-template~ instead, as
2025 it provides more features and covers all export back-ends.  It is also
2026 accessible from the export dispatcher.
2028 *** Removed function ~org-timer-cancel-timer~
2030 ~org-timer-stop~ now stops both relative and countdown timers.
2032 *** Removed function ~org-export-solidify-link-text~
2034 This function, being non-bijective, introduced bug in internal
2035 references.  Use ~org-export-get-reference~ instead.
2037 *** Removed function ~org-end-of-meta-data-and-drawers~
2039 The function is superseded by ~org-end-of-meta-data~, called with an
2040 optional argument.
2042 *** Removed functions ~org-table-colgroup-line-p~, ~org-table-cookie-line-p~
2044 These functions were left-over from pre 8.0 era.  They are not correct
2045 anymore.  Since they are not needed, they have no replacement.
2047 ** Removed options
2049 *** ~org-list-empty-line-terminates-plain-lists~ is deprecated
2051 It will be kept in code base until next release, for backward
2052 compatibility.
2054 If you need to separate consecutive lists with blank lines, always use
2055 two of them, as if this option was nil (default value).
2057 *** ~org-export-with-creator~ is a boolean
2059 Special ~comment~ value is no longer allowed.  It is possible to use a
2060 body filter to add comments about the creator at the end of the
2061 document instead.
2063 *** Removed option =org-html-use-unicode-chars=
2065 Setting this to non-nil was problematic as it converted characters
2066 everywhere in the buffer, possibly corrupting URLs.
2068 *** Removed option =org-babel-sh-command=
2070 This undocumented option defaulted to the value of =shell-file-name= at
2071 the time of loading =ob-shell=.  The new behavior is to use the value
2072 of =shell-file-name= directly when the shell langage is =shell=.  To chose
2073 a different shell, either customize =shell-file-name= or bind this
2074 variable locally.
2076 *** Removed option =org-babel-sh-var-quote-fmt=
2078 This undocumented option was supposed to provide different quoting
2079 styles when changing the shell type.  Changing the shell type can now
2080 be done directly from the source block and the quoting style has to be
2081 compatible across all shells, so a customization doesn't make sense
2082 anymore.  The chosen hard coded quoting style conforms to POSIX.
2084 *** Removed option ~org-insert-labeled-timestamps-at-point~
2086 Setting this option to anything else that the default value (nil)
2087 would create invalid planning info.  This dangerous option is now
2088 removed.
2090 *** Removed option ~org-koma-letter-use-title~
2092 Use org-export-with-title instead.  See also below.
2094 *** Removed option ~org-entities-ascii-explanatory~
2096 This variable has no effect since Org 8.0.
2098 *** Removed option ~org-table-error-on-row-ref-crossing-hline~
2100 This variable has no effect since August 2009.
2102 *** Removed MathML-related options from ~org-html-mathjax-options~
2104 MathJax automatically chooses the best display technology based on the
2105 end-users browser.  You may force initial usage of MathML via
2106 ~org-html-mathjax-template~ or by setting the ~path~ property of
2107 ~org-html-mathjax-options~.
2109 *** Removed comment-related filters
2111 ~org-export-filter-comment-functions~ and
2112 ~org-export-filter-comment-block-functions~ variables do not exist
2113 anymore.
2115 ** Miscellaneous
2117 *** Strip all meta data from ITEM special property
2119 ITEM special property does not contain TODO, priority or tags anymore.
2121 *** File names in links accept are now compatible with URI syntax
2123 Absolute file names can now start with =///= in addition to =/=. E.g.,
2124 =[[file:///home/me/unicorn.jpg]]=.
2126 *** Footnotes in included files are now local to the file
2128 As a consequence, it is possible to include multiple Org files with
2129 footnotes in a master document without being concerned about footnote
2130 labels colliding.
2132 *** Mailto links now use regular URI syntax
2134 This change deprecates old Org syntax for mailto links:
2135 =mailto:user@domain::Subject=.
2137 *** =QUOTE= keywords do not exist anymore
2139 =QUOTE= keywords have been deprecated since Org 8.2.
2141 *** Select tests to perform with the build system
2143 The build system has been enhanced to allow test selection with a
2144 regular expression by defining =BTEST_RE= during the test invocation.
2145 This is especially useful during bisection to find just when a
2146 particular test failure was introduced.
2148 *** Exact heading search for external links ignore spaces and cookies
2150 Exact heading search for links now ignore spaces and cookies. This is
2151 the case for links of the form ~file:projects.org::*task title~, as well
2152 as links of the form ~file:projects.org::some words~ when
2153 ~org-link-search-must-match-exact-headline~ is not nil.
2155 *** ~org-latex-hyperref-template~, ~org-latex-title-command~ formatting
2157 New formatting keys are supported.  See the respective docstrings.
2158 Note, ~org-latex-hyperref-template~ has a new default value.
2160 *** ~float, wasysym, marvosym~ are removed from ~org-latex-default-packages-alist~
2162 If you require any of these package add them to your preamble via
2163 ~org-latex-packages-alist~. Org also uses default LaTeX ~\tolerance~ now.
2165 *** When exporting, throw an error on unresolved id/fuzzy links and code refs
2167 This helps spotting wrong links.
2169 * Version 8.2
2171 ** Incompatible changes
2172 *** =ob-sh.el= renamed to =ob-shell=
2173 This may require two changes in user config.
2175 1. In =org-babel-do-load-languages=, change =(sh . t)= to =(shell . t)=.
2176 2. Edit =local.mk= files to change the value of =BTEST_OB_LANGUAGES=
2177    to remove "sh" and include "shell".
2179 *** Combine org-mac-message.el and org-mac-link-grabber into org-mac-link.el
2181 Please remove calls to =(require 'org-mac-message)= and =(require
2182 'org-mac-link-grabber)= in your =.emacs= initialization file.  All you
2183 need now is =(require 'org-mac-link)=.
2185 Additionally, replace any calls to =ogml-grab-link= to
2186 =org-mac-grab-link=.  For example, replace this line:
2188 : (define-key org-mode-map (kbd "C-c g") 'omgl-grab-link)
2190 with this:
2192 : (define-key org-mode-map (kbd "C-c g") 'org-mac-grab-link)
2194 *** HTML export: Replace =HTML_HTML5_FANCY= by =:html-html5-fancy= (...)
2196 Some of the HTML specific export options in Org <8.1 are either nil or
2197 t, like =#+HTML_INCLUDE_STYLE=.  We replaced these binary options with
2198 option keywords like :html-include-style.
2200 So you need to replace
2202 : #+HTML_INCLUDE_STYLE: t
2206 : #+OPTIONS: :html-include-style t
2208 Options affected by this change: =HTML5_FANCY=, =HTML_INCLUDE_SCRIPTS=
2209 and =HTML_INCLUDE_STYLE=.
2211 *** Add an argument to ~org-export-to-file~ and ~org-export-to-buffer~
2213 ~org-export-to-file~ and ~org-export-to-file~ can run in a different
2214 process when provided a non-nil =ASYNC= optional argument, without
2215 relying on ~org-export-async-start~ macro.
2217 Since =ASYNC= is the first of optional arguments, you have to shift
2218 the other optional arguments accordingly.
2220 *** Export back-ends are now structures
2222 Export back-ends are now structures, and stored as such in the
2223 communication channel during an export process.  In other words, from
2224 now on, ~(plist-get info :back-end)~ will return a structure instead
2225 of a symbol.
2227 Arguments in hooks and in filters are still symbols, though.
2229 ** Important bugfixes
2231 *** [[doc:org-insert-heading][org-insert-heading]] has been rewritten and bugs are now fixed
2232 *** The replacement of disputed keys is now turned of when reading a date
2234 *** Match string for sparse trees can now contain a slash in a property value
2236     You can now have searches like SOMEPROP="aaa/bbb".  Until now,
2237     this would break because the slash would be interpreted as the
2238     separator starting a TOTO match string.
2239 ** New features
2241 *** =C-c ^ x= will now sort checklist items by their checked status
2243 See [[doc:org-sort-list][org-sort-list]]: hitting =C-c ^ x= will put checked items at the end
2244 of the list.
2245 *** Various LaTeX export enhancements
2247 - Support SVG images
2248 - Support for .pgf files
2249 - LaTeX Babel blocks can now be exported as =.tikz= files
2250 - Allow =latexmk= as an option for [[doc:org-latex-pdf-process][org-latex-pdf-process]]
2251 - When using =\usepackage[AUTO]{babel}=, AUTO will automatically be
2252   replaced with a value compatible with ~org-export-default-language~
2253   or ~LANGUAGE~ keyword.
2254 - The dependency on the =latexsym= LaTeX package has been removed, we
2255   now use =amssymb= symbols by default instead.
2257 *** New functions for paragraph motion
2259     The commands =C-down= and =C-up= now invoke special commands
2260     that use knowledge from the org-elements parser to move the cursor
2261     in a paragraph-like way.
2263 *** New entities in =org-entities.el=
2265 Add support for ell, imath, jmath, varphi, varpi, aleph, gimel, beth,
2266 dalet, cdots, S (§), dag, ddag, colon, therefore, because, triangleq,
2267 leq, geq, lessgtr, lesseqgtr, ll, lll, gg, ggg, prec, preceq,
2268 preccurlyeq, succ, succeq, succurlyeq, setminus, nexist(s), mho,
2269 check, frown, diamond.  Changes loz, vert, checkmark, smile and tilde.
2271 *** Anonymous export back-ends
2273 ~org-export-create-backend~ can create anonymous export back-ends,
2274 which can then be passed to export functions like
2275 ~org-export-to-file~, ~org-export-to-buffer~ or ~org-export-as~.
2277 It allows for quick translation of Org syntax without the overhead of
2278 registering a new back-end.
2280 *** New agenda fortnight view
2282     The agenda has not, in addition to day, week, month, and year
2283     views, also a fortnight view covering 14 days.
2284 ** New options
2286 *** New option [[doc:org-bookmark-names-plist][org-bookmark-names-plist]]
2288 This allows to specify the names of automatic bookmarks.
2289 *** New option [[doc:org-agenda-ignore-drawer-properties][org-agenda-ignore-drawer-properties]]
2291 This allows more flexibility when optimizing the agenda generation.
2292 See https://orgmode.org/worg/agenda-optimization.html for details.
2293 *** New option: [[doc:org-html-link-use-abs-url][org-html-link-use-abs-url]] to force using absolute URLs
2295 This is an export/publishing option, and should be used either within
2296 the =#+OPTIONS= line(s) or within a [[doc:org-publish-project-alist][org-publish-project-alist]].
2298 Setting this option to =t= is needed when the HTML output does not
2299 allow relative URLs.  For example, the =contrib/lisp/ox-rss.el=
2300 library produces a RSS feed, and RSS feeds need to use absolute URLs,
2301 so a combination of =:html-link-home "..." and :html-link-use-abs-url
2302 t= is required---see the configuration example in the comment section
2303 of =ox-rss.el=.
2305 *** New option [[doc:org-babel-ditaa-java-cmd][org-babel-ditaa-java-cmd]]
2307 This makes java executable configurable for ditaa blocks.
2309 *** New options [[doc:org-babel-latex-htlatex][org-babel-latex-htlatex]] and [[doc:org-babel-latex-htlatex-packages][org-babel-latex-htlatex-packages]]
2311 This enables SVG generation from latex code blocks.
2313 *** New option: [[doc:org-habit-show-done-always-green][org-habit-show-done-always-green]]
2315 See [[https://lists.gnu.org/r/emacs-orgmode/2013-05/msg00214.html][this message]] from Max Mikhanosha.
2317 *** New option: [[doc:org-babel-inline-result-wrap][org-babel-inline-result-wrap]]
2319 If you set this to the following
2321 : (setq org-babel-inline-result-wrap "$%s$")
2323 then inline code snippets will be wrapped into the formatting string.
2325 *** New option: [[doc:org-special-ctrl-o][org-special-ctrl-o]]
2327     This variable can be used to turn off the special behavior of
2328     =C-o= in tables.
2329 ** New contributed packages
2331 - =ox-bibtex.el= by Nicolas Goaziou :: an utility to handle BibTeX
2332      export to both LaTeX and HTML exports.  It uses the [[http://www.lri.fr/~filliatr/bibtex2html/][bibtex2html]]
2333      software.
2335 - =org-screenshot.el= by Max Mikhanosha :: an utility to handle
2336      screenshots easily from Org, using the external tool [[http://freecode.com/projects/scrot][scrot]].
2338 ** Miscellaneous
2340 *** "QUOTE" keywords in headlines are deprecated
2342 "QUOTE" keywords are an undocumented feature in Org.  When a headline
2343 starts with the keyword "QUOTE", its contents are parsed as
2344 a ~quote-section~ and treated as an example block.  You can achieve
2345 the same with example blocks.
2347 This feature is deprecated and will be removed in the next Org
2348 release.
2350 * Version 8.0.1
2352 ** Installation
2354 Installation instructions have been updated and simplified.
2356 If you have troubles installing or updating Org, focus on these
2357 instructions:
2359 - when updating via a =.zip/.tar.gz= file, you only need to set the
2360   =load-path= in your =.emacs=.  Set it before any other Org
2361   customization that would call autoloaded Org functions.
2363 - when updating by pulling Org's Git repository, make sure to create the
2364   correct autoloads.  You can do this by running =~$ make autoloads= (to
2365   only create the autoloads) or by running =~$ make= (to also compile
2366   the Emacs lisp files.)  =~$ make help= and =~$ make helpall= gives you
2367   detailed explanations.
2369 - when updating through ELPA (either from GNU ELPA or from Org ELPA),
2370   you have to install Org's ELPA package in a session where no Org
2371   function has been called already.
2373 When in doubt, run =M-x org-version RET= and see if you have a mixed-up
2374 installation.
2376 See https://orgmode.org/org.html#Installation for details.
2378 ** Incompatible changes
2380 Org 8.0 is the most disruptive major version of Org.
2382 If you configured export options, you will have to update some of them.
2384 If you used =#+ATTR_*= keywords, the syntax of the attributes changed and
2385 you will have to update them.
2387 Below is a list of changes for which you need to take action.
2389 See https://orgmode.org/worg/org-8.0.html for the most recent version of
2390 this list and for detailed instructions on how to migrate.
2392 **** New export engine
2394 Org 8.0 comes with a new export engine written by Nicolas Goaziou.  This
2395 export engine relies on ~org-element.el~ (Org's syntax parser), which was
2396 already in Org's core.  This new export engine triggered the rewriting of
2397 /all/ export back-ends.
2399 The most visible change is the export dispatcher, accessible through the
2400 keybinding =C-c C-e=.  By default, this menu only shows some of the
2401 built-in export formats, but you can add more formats by loading them
2402 directly (e.g., =(require 'ox-texinfo)= or by configuring the option
2403 [[doc:org-export-backends][org-export-backends]].
2405 More contributed back-ends are available from the =contrib/= directory, the
2406 corresponding files start with the =ox-= prefix.
2408 If you customized an export back-end (like HTML or LaTeX), you will need to
2409 rename some options so that your customization is not lost.  Typically, an
2410 option starting with =org-export-html-= is now named =org-html-=.  See the
2411 manual for details and check [[https://orgmode.org/worg/org-8.0.html][this Worg page]] for directions.
2413 **** New syntax for #+ATTR_HTML/LaTeX/... options
2415      : #+ATTR_HTML width="200px"
2417      should now be written
2419      : #+ATTR_HTML :width 200px
2421      Keywords like =#+ATTR_HTML= and =#+ATTR_LaTeX= are defined in their
2422      respective back-ends, and the list of supported parameters depends on
2423      each backend.  See Org's manual for details.
2425 **** ~org-remember.el~ has been removed
2427      You cannot use =remember.el= anymore to capture notes.
2429      Support for remember templates has been obsoleted since long, it is
2430      now fully removed.
2432      Use =M-x org-capture-import-remember-templates RET= to import your
2433      remember templates into capture templates.
2435 **** ~org-jsinfo.el~ has been merged into ~ox-html.el~
2437      If you were requiring ~ox-jsinfo.el~ in your ~.emacs.el~ file, you
2438      will have to remove this requirement from your initialization file.
2440 **** Note for third-party developers
2442      The name of the files for export back-end have changed: we now use the
2443      prefix =ox-= for those files (like we use the =ob-= prefix for Babel
2444      files.)  For example ~org-html.el~ is now ~ox-html.el~.
2446      If your code relies on these files, please update the names in your
2447      code.
2449 **** Packages moved from core to contrib
2451      Since packages in Org's core are meant to be part of GNU Emacs, we try
2452      to be minimalist when it comes to adding files into core.  For 8.0, we
2453      moved some contributions into the =contrib/= directory.
2455      The rationale for deciding that these files should live in =contrib/=
2456      is either because they rely on third-party software that is not
2457      included in Emacs, or because they are not targeting a significant
2458      user-base.
2460      - org-colview-xemacs.el
2461      - org-mac-message.el
2462      - org-mew.el
2463      - org-wl.el
2464      - ox-freedmind.el
2465      - ox-taskjuggler.el
2467      Note that ~ox-freedmind.el~ has been rewritten by Jambunathan,
2468      ~org-mew.el~ has been enhanced by Tokuya Kameshima and
2469      ~ox-taskjuggler.el~ by Nicolas Goaziou and others.
2471      Also, the Taskjuggler exporter now uses TJ3 by default.  John Hendy
2472      wrote [[https://orgmode.org/worg/org-tutorials/org-taskjuggler3.html][a tutorial on Worg]] for the TJ3 export.
2474 ** New packages in core
2476 *** ~ob-makefile.el~ by Eric Schulte and Thomas S. Dye
2478     =ob-makefile.el= implements Org Babel support for Makefile tangling.
2480 *** ~ox-man.el~ by Luis Anaya
2482     =ox-man.el= allows you to export Org files to =man= pages.
2484 *** ~ox-md.el~ by Nicolas Goaziou
2486     =ox-md.el= allows you to export Org files to Markdown files, using the
2487     vanilla [[http://daringfireball.net/projects/markdown/][Markdown syntax]].
2489 *** ~ox-texinfo.el~ by Jonathan Leech-Pepin
2491     =ox-texinfo.el= allows you to export Org files to [[https://www.gnu.org/software/texinfo/][Texinfo]] files.
2493 ** New packages in contrib
2495 *** ~ob-julia.el~ by G. Jay Kerns
2497     [[http://julialang.org/][Julia]] is a new programming language.
2499     =ob-julia.el= provides Org Babel support for evaluating Julia source
2500     code.
2502 *** ~ob-mathomatic.el~ by Luis Anaya
2504     [[http://www.mathomatic.org/][mathomatic]] a portable, command-line, educational CAS and calculator
2505     software, written entirely in the C programming language.
2507     ~ob-mathomatic.el~ provides Org Babel support for evaluating mathomatic
2508     entries.
2510 *** ~ob-tcl.el~ by Luis Anaya
2512     ~ob-tcl.el~ provides Org Babel support for evaluating [[http://www.tcl.tk/][Tcl]] source code.
2514 *** ~org-bullets.el~ by Evgeni Sabof
2516     Display bullets instead of stars for headlines.
2518     Also see [[https://orgmode.org/worg/org-faq.html#sec-8-12][this updated FAQ]] on how to display another character than "*"
2519     for starting headlines.
2521 *** ~org-favtable.el~ by Marc-Oliver Ihm
2523     ~org-favtable.el~ helps you to create and update a table of favorite
2524     locations in org, keeping the most frequently visited lines right at
2525     the top.  This table is called "favtable".  See the documentation on
2526     [[https://orgmode.org/worg/org-contrib/org-favtable.html][Worg]].
2528 *** ~ox-confluence.el~ by Sébastien Delafond
2530     ~ox-confluence.el~ lets you convert Org files to [[https://confluence.atlassian.com/display/DOC/Confluence%2BWiki%2BMarkup][Confluence Wiki]] files.
2532 *** ~ox-deck.el~ and ~ox-s5.el~ by Rick Frankel
2534     [[http://imakewebthings.com/deck.js/][deck.js]] is a javascript library for displaying HTML ages as
2535     presentations.  ~ox-deck.el~ exports Org files to HTML presentations
2536     using =deck.js=.
2538     [[http://meyerweb.com/eric/tools/s5/][s5]] is a set of scripts which also allows to display HTML pages as
2539     presentations.  ~ox-s5.el~ exports Org files to HTML presentations
2540     using =s5=.
2542 *** ~ox-groff.el~ by Luis Anaya and Nicolas Goaziou
2544     The [[https://www.gnu.org/software/groff/][groff]] (GNU troff) software is a typesetting package which reads
2545     plain text mixed with formatting commands and produces formatted
2546     output.
2548     Luis Anaya and Nicolas Goaziou implemented ~ox-groff.el~ to allow
2549     conversion from Org files to groff.
2551 *** ~ox-koma-letter.el~ by Nicolas Goaziou and Alan Schmitt
2553     This back-end allow to export Org pages to the =KOMA Scrlttr2= format.
2555 *** ~ox-rss.el~ by Bastien
2557     This back-end lets you export Org pages to RSS 2.0 feeds.  Combined
2558     with the HTML publishing feature, this allows you to build a blog
2559     entirely with Org.
2561 ** New features
2563 *** Export
2565 **** New export generic options
2567 If you use Org exporter, we advise you to re-read [[https://orgmode.org/org.html#Exporting][the manual section about
2568 it]].  It has been updated and includes new options.
2570 Among the new/updated export options, three are of particular importance:
2572 - [[doc:org-export-allow-bind-keywords][org-export-allow-bind-keywords]] :: This option replaces the old option
2573      =org-export-allow-BIND= and the default value is =nil=, not =confirm=.
2574      You will need to explicitly set this to =t= in your initialization
2575      file if you want to allow =#+BIND= keywords.
2577 - [[doc:org-export-with-planning][org-export-with-planning]] :: This new option controls the export of
2578      =SCHEDULED:, DEADLINE:, CLOSED:= lines, and planning information is
2579      now skipped by default during export.  This use to be the job of
2580      [[doc:org-export-with-timestamps][org-export-with-timestamps]], but this latter option has been given a
2581      new role: it controls the export of /standalone time-stamps/.  When
2582      set to =nil=, Org will not export active and inactive time-stamps
2583      standing on a line by themselves or within a paragraph that only
2584      contains time-stamps.
2586 To check if an option has been introduced or its default value changed in
2587 Org 8.0, do =C-h v [option] RET= and check if the documentation says that
2588 the variable has been introduced (or changed) in version 24.4 of Emacs.
2590 **** Enhanced default stylesheet for the HTML exporter
2592 See the new default value of [[doc:org-html-style-default][org-html-style-default]].
2594 **** New tags, classes and ids for the HTML exporter
2596 See the new default value of [[doc:org-html-divs][org-html-divs]].
2598 **** Support for tikz pictures in LaTeX export
2599 **** ~org-man.el~: New export function for "man" links
2600 **** ~org-docview.el~: New export function for docview links
2601 *** Structure editing
2603 **** =C-u C-u M-RET= inserts a heading at the end of the parent subtree
2604 **** Cycling to the =CONTENTS= view keeps inline tasks folded
2606 [[doc:org-cycle-hook][org-cycle-hook]] as a new function [[doc:org-cycle-hide-inline-tasks][org-cycle-hide-inline-tasks]] which
2607 prevents the display of inline tasks when showing the content of a subtree.
2609 **** =C-c -= in a region makes a list item for each line
2611 This is the opposite of the previous behavior, where =C-c -= on a region
2612 would create one item for the whole region, and where =C-u C-c -= would
2613 create an item for each line.  Now =C-c -= on the selected region creates
2614 an item per line, and =C-u C-c -= creates a single item for the whole
2615 region.
2617 **** When transposing words, markup characters are now part of the words
2619 In Emacs, you can transpose words with =M-t=.  Transposing =*these*
2620 _words__= will preserve markup.
2622 **** New command [[doc:org-set-property-and-value][org-set-property-and-value]] bound to =C-c C-x P=
2624 This command allows you to quickly add both the property and its value.  It
2625 is useful in buffers where there are many properties and where =C-c C-x p=
2626 can slow down the flow of editing too much.
2628 **** New commands [[doc:org-next-block][org-next-block]] and [[doc:org-previous-block][org-previous-block]]
2630 These commands allow you to go to the previous block (=C-c M-b= or the
2631 speedy key =B=) or to the next block (=C-c M-f= or the speedy key =F=.)
2633 **** New commands [[doc:org-drag-line-forward][org-drag-line-forward]] and [[doc:org-drag-line-backward][org-drag-line-backward]]
2635 These commands emulate the old behavior of =M-<down>= and =M-<up>= but are
2636 now bound to =S-M-<down>= and =S-M-<up>= respectively, since =M-<down>= and
2637 =M-<up>= now drag the whole element at point (a paragraph, a table, etc.)
2638 forward and backward.
2640 **** When a list item has a checkbox, inserting a new item uses a checkbox too
2641 **** When sorting entries/items, only the description of links is considered
2643 Now Org will sort this list
2645 : - [[http://abc.org][B]]
2646 : - [[http://def.org][A]]
2648 like this:
2650 : - [[http://def.org][A]]
2651 : - [[http://abc.org][B]]
2653 by comparing the descriptions, not the links.
2654 Same when sorting headlines instead of list items.
2655 **** New option =orgstruct-heading-prefix-regexp=
2657 For example, setting this option to "^;;; " in Emacs lisp files and using
2658 =orgstruct-mode= in those files will allow you to cycle through visibility
2659 states as if lines starting with ";;; *..." where headlines.
2661 In general, you want to set =orgstruct-heading-prefix-regexp= as a file
2662 local variable.
2664 **** New behavior of [[doc:org-clone-subtree-with-time-shift][org-clone-subtree-with-time-shift]]
2666 The default is now to ask for a time-shift only when there is a time-stamp.
2667 When called with a universal prefix argument =C-u=, it will not ask for a
2668 time-shift even if there is a time-stamp.
2670 **** New option [[doc:org-agenda-restriction-lock-highlight-subtree][org-agenda-restriction-lock-highlight-subtree]]
2672 This defaults to =t= so that the whole subtree is highlighted when you
2673 restrict the agenda view to it with =C-c C-x <= (or the speed command =<=).
2674 The default setting helps ensuring that you are not adding tasks after the
2675 restricted region.  If you find this highlighting too intrusive, set this
2676 option to =nil=.
2677 **** New option [[doc:org-closed-keep-when-no-todo][org-closed-keep-when-no-todo]]
2679 When switching back from a =DONE= keyword to a =TODO= keyword, Org now
2680 removes the =CLOSED= planning information, if any.  It also removes this
2681 information when going back to a non-TODO state (e.g., with =C-c C-t SPC=).
2682 If you want to keep the =CLOSED= planning information when removing the
2683 TODO keyword, set [[doc:org-closed-keep-when-no-todo][org-closed-keep-when-no-todo]] to =t=.
2685 **** New option [[doc:org-image-actual-width][org-image-actual-width]]
2687 This option allows you to change the width of in-buffer displayed images.
2688 The default is to use the actual width of the image, but you can use a
2689 fixed value for all images, or fall back on an attribute like
2691 : #+attr_html: :width 300px
2692 *** Scheduled/deadline
2694 **** Implement "delay" cookies for scheduled items
2696 If you want to delay the display of a scheduled task in the agenda, you can
2697 now use a delay cookie like this: =SCHEDULED: <2004-12-25 Sat -2d>=.  The
2698 task is still scheduled on the 25th but will appear in your agenda starting
2699 from two days later (i.e. from March 27th.)
2701 Imagine for example that your co-workers are not done in due time and tell
2702 you "we need two more days".  In that case, you may want to delay the
2703 display of the task in your agenda by two days, but you still want the task
2704 to appear as scheduled on March 25th.
2706 In case the task contains a repeater, the delay is considered to affect all
2707 occurrences; if you want the delay to only affect the first scheduled
2708 occurrence of the task, use =--2d= instead.  See [[doc:org-scheduled-delay-days][org-scheduled-delay-days]]
2709 and [[doc:org-agenda-skip-scheduled-delay-if-deadline][org-agenda-skip-scheduled-delay-if-deadline]] for details on how to
2710 control this globally or per agenda.
2712 **** Use =C-u C-u C-c C-s= will insert a delay cookie for scheduled tasks
2714 See the previous section for why delay cookies may be useful.
2716 **** Use =C-u C-u C-c C-d= will insert a warning delay for deadline tasks
2718 =C-u C-u C-c C-d= now inserts a warning delay to deadlines.
2719 *** Calendar, diary and appts
2721 **** New variable [[doc:org-read-date-minibuffer-local-map][org-read-date-minibuffer-local-map]]
2723 By default, this new local map uses "." to go to today's date, like in the
2724 normal =M-x calendar RET=.  If you want to deactivate this and to reassign
2725 the "@" key to =calendar-goto-today=, use this:
2727 #+BEGIN_SRC emacs-lisp
2728   ;; Unbind "." in Org's calendar:
2729   (define-key org-read-date-minibuffer-local-map (kbd ".") nil)
2731   ;; Bind "@" to `calendar-goto-today':
2732   (define-key org-read-date-minibuffer-local-map
2733               (kbd "@")
2734               (lambda () (interactive) (org-eval-in-calendar '(calendar-goto-today))))
2735 #+END_SRC
2737 **** In Org's calendar, =!= displays diary entries of the date at point
2739 This is useful when you want to check if you don't already have an
2740 appointment when setting new ones with =C-c .= or =C-c s=.  =!= will
2741 call =diary-view-entries= and display the diary in a separate buffer.
2743 **** [[doc:org-diary][org-diary]]: only keep the descriptions of links
2745 [[doc:org-diary][org-diary]] returns diary information from Org files, but it returns it
2746 in a diary buffer, not in an Org mode buffer.  When links are displayed,
2747 only show their description, not the full links.
2748 *** Agenda
2750 **** New agenda type =agenda*= and entry types =:scheduled* :deadline*=
2752 When defining agenda custom commands, you can now use =agenda*=: this will
2753 list entries that have both a date and a time.  This is useful when you
2754 want to build a list of appointments.
2756 You can also set [[doc:org-agenda-entry-types][org-agenda-entry-types]] either globally or locally in
2757 each agenda custom command and use =:timestamp*= and/or =:deadline*= there.
2759 Another place where this is useful is your =.diary= file:
2761 : %%(org-diary :scheduled*) ~/org/rdv.org
2763 This will list only entries from =~/org/rdv.org= that are scheduled with a
2764 time value (i.e. appointments).
2766 **** New agenda sorting strategies
2768 [[doc:org-agenda-sorting-strategy][org-agenda-sorting-strategy]] allows these new sorting strategies:
2770 | Strategy       | Explanations                             |
2771 |----------------+------------------------------------------|
2772 | timestamp-up   | Sort by any timestamp, early first       |
2773 | timestamp-down | Sort by any timestamp, late first        |
2774 | scheduled-up   | Sort by scheduled timestamp, early first |
2775 | scheduled-down | Sort by scheduled timestamp, late first  |
2776 | deadline-up    | Sort by deadline timestamp, early first  |
2777 | deadline-down  | Sort by deadline timestamp, late first   |
2778 | ts-up          | Sort by active timestamp, early first    |
2779 | ts-down        | Sort by active timestamp, late first     |
2780 | tsia-up        | Sort by inactive timestamp, early first  |
2781 | tsia-down      | Sort by inactive timestamp, late first   |
2783 **** New options to limit the number of agenda entries
2785 You can now limit the number of entries in an agenda view.  This is
2786 different from filters: filters only /hide/ the entries in the agenda,
2787 while limits are set while generating the list of agenda entries.
2789 These new options are available:
2791 - [[doc:org-agenda-max-entries][org-agenda-max-entries]] :: limit by number of entries.
2792 - [[doc:org-agenda-max-todos][org-agenda-max-todos]] :: limit by number of TODOs.
2793 - [[doc:org-agenda-max-tags][org-agenda-max-tags]] :: limit by number of tagged entries.
2794 - [[doc:org-agenda-max-effort][org-agenda-max-effort]] :: limit by effort (minutes).
2796 For example, if you locally set [[doc:org-agenda-max-todos][org-agenda-max-todos]] to 3 in an agenda
2797 view, the agenda will be limited to the first three todos.  Other entries
2798 without a TODO keyword or beyond the third TODO headline will be ignored.
2800 When setting a limit (e.g. about an effort's sum), the default behavior is
2801 to exclude entries that cannot be checked against (e.g. entries that have
2802 no effort property.)  To include other entries too, you can set the limit
2803 to a negative number.  For example =(setq org-agenda-max-tags -3)= will not
2804 show the fourth tagged headline (and beyond), but it will also show
2805 non-tagged headlines.
2807 **** =~= in agenda view sets temporary limits
2809 You can hit =~= in the agenda to temporarily set limits: this will
2810 regenerate the agenda as if the limits were set.  This is useful for
2811 example when you want to only see a list of =N= tasks, or a list of tasks
2812 that take only =N= minutes.
2814 **** "=" in agenda view filters by regular expressions
2816 You can now filter agenda entries by regular expressions using ~=~.  =C-u
2817 == will filter entries out.  Regexp filters are cumulative.  You can set
2818 [[doc:org-agenda-regexp-filter-preset][org-agenda-regexp-filter-preset]] to suit your needs in each agenda view.
2820 **** =|= in agenda view resets all filters
2822 Since it's common to combine tag filters, category filters, and now regexp
2823 filters, there is a new command =|= to reset all filters at once.
2825 **** Allow writing an agenda to an =.org= file
2827 You can now write an agenda view to an =.org= file.  It copies the
2828 headlines and their content (but not subheadings) into the new file.
2830 This is useful when you want to quickly share an agenda containing the full
2831 list of notes.
2833 **** New commands to drag an agenda line forward (=M-<down>=) or backward (=M-<up>=)
2835 It sometimes handy to move agenda lines around, just to quickly reorganize
2836 your tasks, or maybe before saving the agenda to a file.  Now you can use
2837 =M-<down>= and =M-<up>= to move the line forward or backward.
2839 This does not persist after a refresh of the agenda, and this does not
2840 change the =.org= files who contribute to the agenda.
2842 **** Use =%b= for displaying "breadcrumbs" in the agenda view
2844 [[doc:org-agenda-prefix-format][org-agenda-prefix-format]] now allows to use a =%b= formatter to tell Org
2845 to display "breadcrumbs" in the agenda view.
2847 This is useful when you want to display the task hierarchy in your agenda.
2849 **** Use =%l= for displaying the headline's level in the agenda view
2851 [[doc:org-agenda-prefix-format][org-agenda-prefix-format]] allows to use a =%l= formatter to tell Org to
2852 display entries with additional spaces corresponding to their level in the
2853 outline tree.
2855 **** [[doc:org-agenda-write][org-agenda-write]] will ask before overwriting an existing file
2857 =M-x org-agenda-write RET= (or =C-c C-w= from an agenda buffer) used to
2858 overwrite preexisting file with the same name without confirmation.  It now
2859 asks for a confirmation.
2861 **** New commands =M-m= and =M-*= to toggle (all) mark(s) for bulk action
2863 - [[doc:org-agenda-bulk-toggle][org-agenda-bulk-toggle]] :: this command is bound to =M-m= and toggles
2864      the mark of the entry at point.
2866 - [[doc:org-agenda-bulk-toggle-all][org-agenda-bulk-toggle-all]] :: this command is bound to =M-*= and
2867      toggles all the marks in the current agenda.
2869 **** New option [[doc:org-agenda-search-view-max-outline-level][org-agenda-search-view-max-outline-level]]
2871 This option sets the maximum outline level to display in search view.
2872 E.g. when this is set to 1, the search view will only show headlines of
2873 level 1.
2875 **** New option [[doc:org-agenda-todo-ignore-time-comparison-use-seconds][org-agenda-todo-ignore-time-comparison-use-seconds]]
2877 This allows to compare times using seconds instead of days when honoring
2878 options like =org-agenda-todo-ignore-*= in the agenda display.
2880 **** New option [[doc:org-agenda-entry-text-leaders][org-agenda-entry-text-leaders]]
2882 This allows you to get rid of the ">" character that gets added in front of
2883 entries excerpts when hitting =E= in the agenda view.
2885 **** New formatting string for past deadlines in [[doc:org-agenda-deadline-leaders][org-agenda-deadline-leaders]]
2887 The default formatting for past deadlines is ="%2d d. ago: "=, which makes
2888 it explicit that the deadline is in the past.  You can configure this via
2889 [[doc:org-agenda-deadline-leaders][org-agenda-deadline-leaders]].  Note that the width of the formatting
2890 string is important to keep the agenda alignment clean.
2892 **** New allowed value =repeated-after-deadline= for [[doc:org-agenda-skip-scheduled-if-deadline-is-shown][org-agenda-skip-scheduled-if-deadline-is-shown]]
2894 When [[doc:org-agenda-skip-scheduled-if-deadline-is-shown][org-agenda-skip-scheduled-if-deadline-is-shown]] is set to
2895 =repeated-after-deadline=, the agenda will skip scheduled items if they are
2896 repeated beyond the current deadline.
2898 **** New option for [[doc:org-agenda-skip-deadline-prewarning-if-scheduled][org-agenda-skip-deadline-prewarning-if-scheduled]]
2900 This variable may be set to nil, t, the symbol `pre-scheduled', or a number
2901 which will then give the number of days before the actual deadline when the
2902 prewarnings should resume.  The symbol `pre-scheduled' eliminates the
2903 deadline prewarning only prior to the scheduled date.
2905 Read the full docstring for details.
2907 **** [[doc:org-class][org-class]] now supports holiday strings in the skip-weeks parameter
2909 For example, this task will now be skipped only on new year's day:
2911     : * Task
2912     :   <%%(org-class 2012 1 1 2013 12 12 2 "New Year's Day")>
2913 *** Capture
2915 **** Allow =C-1= as a prefix for [[doc:org-agenda-capture][org-agenda-capture]] and [[doc:org-capture][org-capture]]
2917 With a =C-1= prefix, the capture mechanism will use the =HH:MM= value at
2918 point (if any) or the current =HH:MM= time as the default time for the
2919 capture template.
2921 **** Expand keywords within %(sexp) placeholder in capture templates
2923 If you use a =%:keyword= construct within a =%(sexp)= construct, Org will
2924 expand the keywords before expanding the =%(sexp)=.
2926 **** Allow to contextualize capture (and agenda) commands by checking the name of the buffer
2928 [[doc:org-capture-templates-contexts][org-capture-templates-contexts]] and [[doc:org-agenda-custom-commands-contexts][org-agenda-custom-commands-contexts]]
2929 allow you to define what capture templates and what agenda commands should
2930 be available in various contexts.  It is now possible for the context to
2931 check against the name of the buffer.
2932 *** Tag groups
2934 Using =#+TAGS: { Tag1 : Tag2 Tag3 }= will define =Tag1= as a /group tag/
2935 (note the colon after =Tag1=).  If you search for =Tag1=, it will return
2936 headlines containing either =Tag1=, =Tag2= or =Tag3= (or any combination
2937 of those tags.)
2939 You can use group tags for sparse tree in an Org buffer, for creating
2940 agenda views, and for filtering.
2942 See https://orgmode.org/org.html#Tag-groups for details.
2944 *** Links
2946 **** =C-u C-u M-x org-store-link RET= will ignore non-core link functions
2948 Org knows how to store links from Org buffers, from info files and from
2949 other Emacs buffers.  Org can be taught how to store links from any buffer
2950 through new link protocols (see [[https://orgmode.org/org.html#Adding-hyperlink-types]["Adding hyperlink types"]] in the manual.)
2952 Sometimes you want Org to ignore added link protocols and store the link
2953 as if the protocol was not known.
2955 You can now do this with =C-u C-u M-x org-store-link RET=.
2957 **** =C-u C-u C-u M-x org-store-link RET= on an active region will store links for each lines
2959 Imagine for example that you want to store a link for every message in a
2960 Gnus summary buffer.  In that case =C-x h C-u C-u C-u M-x org-store-link
2961 RET= will store a link for every line (i.e. message) if the region is
2962 active.
2964 **** =C-c C-M-l= will add a default description for links which don't have one
2966 =C-c C-M-l= inserts all stored links.  If a link does not have a
2967 description, this command now adds a default one, so that we are not mixing
2968 with-description and without-description links when inserting them.
2970 **** No curly braces to bracket links within internal links
2972 When storing a link to a headline like
2974 : * See [[https://orgmode.org][Org website]]
2976 [[doc:org-store-link][org-store-link]] used to convert the square brackets into curly brackets.
2977 It does not anymore, taking the link description or the link path, when
2978 there is no description.
2979 *** Table
2981 **** Switching between #+TBLFM lines
2983 If you have several =#+TBLFM= lines below a table, =C-c C-c= on a line will
2984 apply the formulas from this line, and =C-c C-c= on another line will apply
2985 those other formulas.
2987 **** You now use "nan" for empty fields in Calc formulas
2989 If empty fields are of interest, it is recommended to reread the section
2990 [[https://orgmode.org/org.html#Formula-syntax-for-Calc][3.5.2 Formula syntax for Calc]] of the manual because the description for the
2991 mode strings has been clarified and new examples have been added towards
2992 the end.
2994 **** Handle localized time-stamps in formulas evaluation
2996 If your =LOCALE= is set so that Org time-stamps use another language than
2997 english, and if you make time computations in Org's table, it now works by
2998 internally converting the time-stamps with a temporary =LOCALE=C= before
2999 doing computation.
3001 **** New lookup functions
3003 There are now three lookup functions:
3005 - [[doc:org-loopup-first][org-loopup-first]]
3006 - [[doc:org-loopup-last][org-loopup-last]]
3007 - [[doc:org-loopup-all][org-loopup-all]]
3009 See [[https://orgmode.org/org.html#Lookup-functions][the manual]] for details.
3010 *** Startup keywords
3012 These new startup keywords are now available:
3014 | Startup keyword                  | Option                                      |
3015 |----------------------------------+---------------------------------------------|
3016 | =#+STARTUP: logdrawer=           | =(setq org-log-into-drawer t)=              |
3017 | =#+STARTUP: nologdrawer=         | =(setq org-log-into-drawer nil)=            |
3018 |----------------------------------+---------------------------------------------|
3019 | =#+STARTUP: logstatesreversed=   | =(setq org-log-states-order-reversed t)=    |
3020 | =#+STARTUP: nologstatesreversed= | =(setq org-log-states-order-reversed nil)=  |
3021 |----------------------------------+---------------------------------------------|
3022 | =#+STARTUP: latexpreview=        | =(setq org-startup-with-latex-preview t)=   |
3023 | =#+STARTUP: nolatexpreview=      | =(setq org-startup-with-latex-preview nil)= |
3025 *** Clocking
3027 **** New option [[doc:org-clock-rounding-minutes][org-clock-rounding-minutes]]
3029 E.g. if [[doc:org-clock-rounding-minutes][org-clock-rounding-minutes]] is set to 5, time is 14:47 and you
3030 clock in: then the clock starts at 14:45.  If you clock out within the next
3031 5 minutes, the clock line will be removed; if you clock out 8 minutes after
3032 your clocked in, the clock out time will be 14:50.
3034 **** New option [[doc:org-time-clocksum-use-effort-durations][org-time-clocksum-use-effort-durations]]
3036 When non-nil, =C-c C-x C-d= uses effort durations.  E.g., by default, one
3037 day is considered to be a 8 hours effort, so a task that has been clocked
3038 for 16 hours will be displayed as during 2 days in the clock display or in
3039 the clocktable.
3041 See [[doc:org-effort-durations][org-effort-durations]] on how to set effort durations and
3042 [[doc:org-time-clocksum-format][org-time-clocksum-format]] for more on time clock formats.
3044 **** New option [[doc:org-clock-x11idle-program-name][org-clock-x11idle-program-name]]
3046 This allows to set the name of the program which prints X11 idle time in
3047 milliseconds.  The default is to use =x11idle=.
3049 **** New option [[doc:org-use-last-clock-out-time-as-effective-time][org-use-last-clock-out-time-as-effective-time]]
3051 When non-nil, use the last clock out time for [[doc:org-todo][org-todo]].  Note that this
3052 option has precedence over the combined use of [[doc:org-use-effective-time][org-use-effective-time]] and
3053 [[doc:org-extend-today-until][org-extend-today-until]].
3055 **** =S-<left/right>= on a clocksum column will update the sum by updating the last clock
3056 **** =C-u 3 C-S-<up/down>= will update clock timestamps synchronously by 3 units
3057 **** New parameter =:wstart= for clocktables to define the week start day
3058 **** New parameter =:mstart= to state the starting day of the month
3059 **** Allow relative times in clocktable tstart and tend options
3060 **** The clocktable summary is now a caption
3061 **** =:tstart= and =:tend= and friends allow relative times like "<-1w>" or "<now>"
3062 *** Babel
3064 **** You can now use =C-c C-k= for [[doc:org-edit-src-abort][org-edit-src-abort]]
3066 This allows you to quickly cancel editing a source block.
3068 **** =C-u C-u M-x org-babel-tangle RET= tangles by the target file of the block at point
3070 This is handy if you want to tangle all source code blocks that have the
3071 same target than the block at point.
3073 **** New options for auto-saving the base buffer or the source block editing buffer
3075 When [[doc:org-edit-src-turn-on-auto-save][org-edit-src-turn-on-auto-save]] is set to =t=, editing a source block
3076 in a new window will turn on =auto-save-mode= and save the code in a new
3077 file under the same directory than the base Org file.
3079 When [[doc:org-edit-src-auto-save-idle-delay][org-edit-src-auto-save-idle-delay]] is set to a number of minutes =N=,
3080 the base Org buffer will be saved after this number of minutes of idle
3081 time.
3083 **** New =:post= header argument post-processes results
3085      This header argument may be used to pass the results of the current
3086      code block through another code block for post-processing.  See the
3087      manual for a usage example.
3089 **** Commented out heading are ignored when collecting blocks for tangling
3091 If you comment out a heading (with =C-c ;= anywhere on the heading or in
3092 the subtree), code blocks from within this heading are now ignored when
3093 collecting blocks for tangling.
3095 **** New option [[doc:org-babel-hash-show-time][org-babel-hash-show-time]] to show a time-stamp in the result hash
3096 **** Do not ask for confirmation if cached value is current
3098 Do not run [[doc:org-babel-confirm-evaluate][org-babel-confirm-evaluate]] if source block has a cache and the
3099 cache value is current as there is no evaluation involved in this case.
3100 **** =ob-sql.el= and =ob-python.el= have been improved.
3101 **** New Babel files only need to =(require 'ob)=
3103 When writing a new Babel file, you now only need to use =(require 'ob)=
3104 instead of requiring each Babel library one by one.
3105 *** Faces
3107 - Org now fontifies radio link targets by default
3108 - In the agenda, use [[doc:org-todo-keyword-faces][org-todo-keyword-faces]] to highlight selected TODO keywords
3109 - New face [[doc:org-priority][org-priority]], enhanced fontification of priority cookies in agenda
3110 - New face [[doc:org-tag-group][org-tag-group]] for group tags
3112 ** Miscellaneous
3114 - New speedy key =s= pour [[doc:org-narrow-to-subtree][org-narrow-to-subtree]]
3115 - Handling of [[doc:org-html-table-row][org-html-table-row]] has been updated (incompatible change)
3116 - [[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]]
3117 - Support using =git-annex= with Org attachments
3118 - org-protocol: Pass optional value using query in url to capture from protocol
3119 - When the refile history is empty, use the current filename as default
3120 - When you cannot change the TODO state of a task, Org displays the blocking task
3121 - New option [[doc:org-mobile-allpriorities][org-mobile-allpriorities]]
3122 - org-bibtex.el now use =visual-line-mode= instead of the deprecated =longlines-mode=
3123 - [[doc:org-format-latex-options][org-format-latex-options]] allows to set the foreground/background colors automatically
3124 - New option [[doc:org-archive-file-header-format][org-archive-file-header-format]]
3125 - New "neg" entity in [[doc:org-entities][org-entities]]
3126 - New function [[doc:org-docview-export][org-docview-export]] to export docview links
3127 - New =:eps= header argument for ditaa code blocks
3128 - New option [[doc:org-gnus-no-server][org-gnus-no-server]] to start Gnus with =gnus-no-server=
3129 - Org is now distributed with =htmlize.el= version 1.43
3130 - ~org-drill.el~ has been updated to version 2.3.7
3131 - ~org-mac-iCal.el~ now supports OS X versions up to 10.8
3132 - Various improvements to ~org-contacts.el~ and =orgpan.el=
3134 ** Outside Org
3136 *** Spanish translation of the Org guide by David Arroyo Menéndez
3138 David (and others) translated the Org compact guide in spanish:
3140 You can read the [[https://orgmode.org/worg/orgguide/orgguide.es.pdf][PDF guide]].
3142 *** ~poporg.el~ and ~outorg.el~
3144 Two new libraries (~poporg.el~ by François Pinard and ~outorg.el~ by
3145 Thorsten Jolitz) now enable editing of comment-sections from source-code
3146 buffers in temporary Org-mode buffers, making the full editing power of
3147 Org-mode available.  ~outorg.el~ comes together with ~outshine.el~ and
3148 ~navi-mode.el~, two more libraries by Thorsten Jolitz with the goal to give
3149 source-code buffers the /look & feel/ of Org-mode buffers while greatly
3150 improving navigation and structure editing.  A detailed description can be
3151 found here: https://orgmode.org/worg/org-tutorials/org-outside-org.html
3153 Here are two screencasts demonstrating Thorsten's tools:
3155 - [[http://youtu.be/nqE6YxlY0rw]["Modern conventions for Emacs Lisp files"]]
3156 - [[http://www.youtube.com/watch?v%3DII-xYw5VGFM][Exploring Bernt Hansen's Org-mode tutorial with 'navi-mode']]
3158 *** MobileOrg for iOS
3160 MobileOrg for iOS back in the App Store The 1.6.0 release was focused on
3161 the new Dropbox API and minor bug fixes but also includes a new ability to
3162 launch in Capture mode.  Track development and contribute [[https://github.com/MobileOrg/mobileorg/issues][on github]].
3164 * Version 7.9.3
3166 ** New option [[doc::org-agenda-use-tag-inheritance][org-agenda-use-tag-inheritance]]
3168 [[doc::org-use-tag-inheritance][org-use-tag-inheritance]] controls whether tags are inherited when
3169 org-tags-view is called (either in =tags=, =tags-tree= or =tags-todo=
3170 agenda views.)
3172 When generating other agenda types such as =agenda=, =todo= and
3173 =todo-tree=, tags inheritance is not used when selecting the entries
3174 to display.  Still, you might want to have all tag information correct
3175 in the agenda buffer, e.g. for tag filtering.  In that case, add the
3176 agenda type to this variable.
3178 Setting this variable to nil should considerably speeds up the agenda
3179 generation.
3181 Note that the default was to display inherited tags in the agenda
3182 lines even if `org-use-tag-inheritance' was nil.  The default is now
3183 to *never* display inherited tags in agenda lines, but to /know/ about
3184 them when the agenda type is listed in [[doc::org-agenda-use-tag-inheritance][org-agenda-use-tag-inheritance]].
3186 ** New default value nil for [[doc::org-agenda-dim-blocked-tasks][org-agenda-dim-blocked-tasks]]
3188 Using `nil' as the default value speeds up the agenda generation.  You
3189 can hit `#' (or `C-u #') in agenda buffers to temporarily dim (or turn
3190 invisible) blocked tasks.
3192 ** New speedy keys for [[doc::org-speed-commands-default][org-speed-commands-default]]
3194 You can now use `:' (instead of `;') for setting tags---this is
3195 consistent with using the `:' key in agenda view.
3197 You can now use `=' for [[doc::org-columns][org-columns]].
3199 ** =org-float= is now obsolete, use =diary-float= instead
3200 ** No GPL manual anymore
3202 There used to be a GPL version of the Org manual, but this is not the
3203 case anymore, the Free Software Foundation does not permit this.
3205 The GNU FDL license is now included in the manual directly.
3207 ** Enhanced compatibility with Emacs 22 and XEmacs
3209 Thanks to Achim for his work on enhancing Org's compatibility with
3210 various Emacsen.  Things may not be perfect, but Org should work okay
3211 in most environments.
3213 * Version 7.9.2
3215 ** New ELPA repository for Org packages
3217 You can now add the Org ELPA repository like this:
3219 #+BEGIN_SRC emacs-lisp
3220 (add-to-list 'package-archives '("org" . "https://orgmode.org/elpa/") t)
3221 #+END_SRC
3223 It contains both the =org-*.tar= package (the core Org distribution, also
3224 available through https://elpa.gnu.org) and the =org-plus*.tar= package (the
3225 extended Org distribution, with non-GNU packages from the =contrib/=
3226 directory.)
3228 See https://orgmode.org/elpa/
3230 ** Overview of the new keybindings
3232    | Keybinding      | Speedy | Command                     |
3233    |-----------------+--------+-----------------------------|
3234    | =C-c C-x C-z=   |        | [[doc::org-clock-resolve][org-clock-resolve]]           |
3235    | =C-c C-x C-q=   |        | [[doc::org-clock-cancel][org-clock-cancel]]            |
3236    | =C-c C-x C-x=   |        | [[doc::org-clock-in-last][org-clock-in-last]]           |
3237    | =M-h=           |        | [[doc::org-mark-element][org-mark-element]]            |
3238    | =*=             |        | [[doc::org-agenda-bulk-mark-all][org-agenda-bulk-mark-all]]    |
3239    | =C-c C-M-l=     |        | [[doc::org-insert-all-links][org-insert-all-links]]        |
3240    | =C-c C-x C-M-v= |        | [[doc::org-redisplay-inline-images][org-redisplay-inline-images]] |
3241    | =C-c C-x E=     | =E=    | [[doc::org-inc-effort][org-inc-effort]]              |
3242    |                 | =#=    | [[doc::org-toggle-comment][org-toggle-comment]]          |
3243    |                 | =:=    | [[doc::org-columns][org-columns]]                 |
3244    |                 | =W=    | Set =APPT_WARNTIME=         |
3245    | =k=             |        | [[doc::org-agenda-capture][org-agenda-capture]]          |
3246    | C-c ,           | ,      | [[doc::org-priority][org-priority]]                |
3248 ** New package and Babel language
3250 *** =org-eshell.el= by Konrad Hinsen is now in Org
3252     =org-eshell.el= allows you to create links from [[https://www.gnu.org/software/emacs/manual/html_node/eshell/index.html][Eshell]].
3254 *** Support for execution of Scala code blocks (see ob-scala.el)
3255 *** Support for execution of IO code blocks (see ob-io.el)
3257 ** Incompatible changes
3259    - If your code relies on =org-write-agenda=, please use
3260      [[doc::org-agenda-write][org-agenda-write]] from now on.
3262    - If your code relies on =org-make-link=, please use =concat=
3263      instead.
3265    - =org-link-to-org-use-id= has been renamed to
3266      =org-id-link-to-org-use-id= and its default value is nil.  The
3267      previous default was =create-if-interactive-and-no-custom-id=.
3269 ** New features and user-visible changes
3271 *** Org Element
3273     =org-element.el= is a toolbox for parsing and analyzing "elements"
3274     in an Org-mode buffer.  This has been written by Nicolas Goaziou
3275     and has been tested for quite some time.  It is now part of Org's
3276     core and many core functions rely on this package.
3278     Two functions might be particularly handy for users:
3279     =org-element-at-point= and =org-element-context=.
3281     See the docstrings for more details.
3283     Below is a list of editing and navigating commands that now rely
3284     on =org-element.el=.
3286 **** [[doc::org-fill-paragraph][org-fill-paragraph]] has been completely rewritten
3288      The filling mechanisms now rely on org-element, trying to do the
3289      right thing on each element in various contexts.  E.g. filling in
3290      a list item will preserve indentation; filling in message-mode
3291      will fall back on the relevant filling functions; etc.
3293 **** [[doc::org-metaup][org-metaup]] and [[doc::org-metadown][org-metadown]] will drag the element backward/forward
3295      If you want to get the old behavior (i.e. moving a line up and
3296      down), you can first select the line as an active region, then
3297      =org-metaup= or =org-metadown= to move the region backward or
3298      forward.  This also works with regions bigger than just one line.
3300 **** [[doc::org-up-element][org-up-element]] and [[doc::org-down-element][org-down-element]] (respectively =C-c C-^= and =C-c C-_=)
3302      This will move the point up/down in the hierarchy of elements.
3304 **** [[doc::org-backward-element][org-backward-element]] and [[doc::org-forward-element][org-forward-element]] (respectively =M-{= and =M-}=)
3306      This will move the point backward/forward in the hierarchy of
3307      elements.
3309 **** [[doc::org-narrow-to-element][org-narrow-to-element]] will narrow to the element at point
3310 **** [[doc::org-mark-element][org-mark-element]] will mark the element at point
3312      This command is bound to =M-h= and will mark the element at
3313      point.  If the point is at a paragraph, it will mark the
3314      paragraph.  If the point is at a list item, it will mark the list
3315      item.  Etc.
3317      Note that if point is at the beginning of a list, it will mark
3318      the whole list.
3320      To mark a subtree, you can either use =M-h= on the headline
3321      (since there is no ambiguity about the element you're at) or
3322      [[doc::org-mark-subtree][org-mark-subtree]] (=C-c @=) anywhere in the subtree.
3324      Invoking [[doc::org-mark-element][org-mark-element]] repeatedly will try to mark the next
3325      element on top of the previous one(s).  E.g. hitting =M-h= twice
3326      on a headline will mark the current subtree and the next one on
3327      the same level.
3329 *** Org Agenda
3331 **** New option [[doc::org-agenda-sticky][org-agenda-sticky]]
3333      There is a new option =org-agenda-sticky= which enables "sticky"
3334      agendas.  Sticky agendas remain opened in the background so that
3335      you don't need to regenerate them each time you hit the
3336      corresponding keystroke.  This is a big time saver.
3338      When [[doc::org-agenda-sticky][org-agenda-sticky]] is =non-nil=, the agenda buffer will be
3339      named using the agenda key and its description.  In sticky
3340      agendas, the =q= key will just bury the agenda buffers and
3341      further agenda commands will show existing buffer instead of
3342      generating new ones.
3344      If [[doc::org-agenda-sticky][org-agenda-sticky]] is set to =nil=, =q= will kill the single
3345      agenda buffer.
3347 **** New option [[doc::org-agenda-custom-commands-contexts][org-agenda-custom-commands-contexts]]
3349      Setting this option allows you to define specific context where
3350      agenda commands should be available from.  For example, when set
3351      to this value
3353      #+BEGIN_SRC emacs-lisp
3354   (setq org-agenda-custom-commands-contexts
3355         '(("p" (in-file . "\\.txt"))))
3356 #+END_SRC
3358      then the =p= agenda command will only be available from buffers
3359      visiting *.txt files.  See the docstring and the manual for more
3360      details on how to use this.
3362 **** Changes in bulk actions
3364      The set of commands starting with =k ...= as been deleted and the
3365      features have been merged into the "bulk action" feature.
3367      After you marked some entries in the agenda, if you call =B s=,
3368      the agenda entries will be rescheduled using the date at point if
3369      on a date header.  If you are on an entry with a timestamp, you
3370      will be prompted for a date to reschedule your marked entries to,
3371      using the timestamp at point as the default prompt.
3373      You can now use =k= to capture the marked entry and use the date
3374      at point as an overriding date for the capture template.
3376      To bind this behavior to =M-x org-capture RET= (or its
3377      keybinding), set the new option [[doc::org-capture-use-agenda-date][org-capture-use-agenda-date]] to
3378      =t=.
3380 **** =N= and =P= in the agenda will move to the next/previous item
3382 **** New command [[doc::org-agenda-bulk-mark-all][org-agenda-bulk-mark-all]] to mark all items
3384      This new command is bound to =*= in agenda mode.
3386      There is also a new option [[doc::org-agenda-bulk-mark-char][org-agenda-bulk-mark-char]] to set the
3387      character to use as a mark for bulk actions.
3389 **** New option [[doc::org-agenda-persistent-marks][org-agenda-persistent-marks]]
3391      When set to =non-nil=, marks will remain visible after a bulk
3392      action.  You can temporarily toggle this by pressing =p= when
3393      invoking [[doc::org-agenda-bulk-action][org-agenda-bulk-action]].  Marks are deleted if your
3394      rebuild the agenda buffer or move to another date/span (e.g. with
3395      =f= or =w=).
3397 **** New option [[doc::org-agenda-skip-timestamp-if-deadline-is-shown][org-agenda-skip-timestamp-if-deadline-is-shown]]
3399      =Non-nil= means skip timestamp line if same entry shows because
3400      of deadline.
3402      In the agenda of today, an entry can show up multiple times
3403      because it has both a plain timestamp and has a nearby deadline.
3404      When this variable is t, then only the deadline is shown and the
3405      fact that the entry has a timestamp for or including today is not
3406      shown.  When this variable is =nil=, the entry will be shown
3407      several times.
3409 **** New =todo-unblocked= and =nottodo-unblocked= skip conditions
3411      See the [[https://orgmode.org/cgit.cgi/org-mode.git/commit/?id=f426da][git commit]] for more explanations.
3413 **** Allow category filtering in the agenda
3415      You can now filter the agenda by category.  Pressing "<" will
3416      filter by the category of the item on the current line, and
3417      pressing "<" again will remove the filter.  You can combine tag
3418      filters and category filters.
3420      You can use =org-agenda-category-filter= in your custom agenda
3421      views and =org-agenda-category-filter-preset= in your main
3422      configuration.
3424      See also the new command [[doc::org-agenda-filter-by-top-category][org-agenda-filter-by-top-category]]:
3425      hitting =^= will filter by "Top" category: only show entries that
3426      are of the same category than the Top category of the entry at
3427      point.
3429 *** Org Links
3431 **** Inserting links
3433      When inserting links through [[doc::org-insert-link][org-insert-link]], the description is
3434      now displayed first, followed by the literal link, as the
3435      description is often more useful when you look for the link you
3436      want to insert.
3438      Completion now complete both literal links and description.  If
3439      you complete a description, the literal link and its description
3440      will be inserted directly, whereas when you complete the literal
3441      link, you will be prompted for a description (as with Org 7.8.)
3443      In the completion buffer, links to the current buffer are now
3444      highlighted.
3446 **** New templates =%h= and =%(sexp)= for abbreviated links
3448      On top of =%s= template, which is replaced by the link tag in
3449      abbreviated links, you can now use =%h= (which does the same than =%s=
3450      but does not hexify the tag) and =%(sexp)= (which can run a function
3451      that takes the tag as its own argument.)
3453 **** New link type =help=
3455      You can now create links from =help= buffers.
3457      For example, if you request help for the command [[doc::org-agenda][org-agenda]] with
3458      =C-h f org-agenda RET=, creating a link from this buffer will let
3459      you go back to the same buffer.
3461 **** New command [[doc::org-insert-all-links][org-insert-all-links]]
3463      This will insert all links as list items.  With a universal
3464      prefix argument, links will not be deleted from the variable
3465      =org-stored-links=.
3467      This new command is bound to =C-c C-M-l=.
3469 **** New option [[doc::org-url-hexify-p][org-url-hexify-p]]
3471      When set to =nil=, the =URL= part of a link will not be hexified.
3473 **** Org can now open multiple shell links
3475 **** New option [[doc::org-doi-server-url][org-doi-server-url]] to specify an alternate DOI server
3477 **** RET now follows time stamps links
3479 *** Org Editing
3481 **** [[doc::org-todo][org-todo]] and =org-archive-*= can now loop in the active region
3483      When [[doc::org-loop-over-headlines-in-active-region][org-loop-over-headlines-in-active-region]] is =non-nil=, using
3484      [[doc::org-todo][org-todo]] or =org-archive-*= commands in the active region will
3485      loop over headlines.  This is handy if you want to set the TODO
3486      keyword for several items, or archive them quickly.
3488 **** You can now set tags for headlines in a region
3490      If [[doc::org-loop-over-headlines-in-active-region][org-loop-over-headlines-in-active-region]] is =non-nil=, then
3491      selecting the region and hitting =C-c C-q= will set the tags for
3492      all headlines in the region.
3494 **** New command [[doc::org-insert-drawer][org-insert-drawer]] to insert a drawer interactively
3496 **** Comments start with "^[ \t]*# " anywhere on a line
3498      Note that the space after the hashtag is mandatory.  Comments
3499      with "^#+" are not supported anymore.
3501 **** New speed key =#= to toggle the COMMENT cookie on a headline
3503 **** =indent-region-function= is now set to [[doc::org-indent-region][org-indent-region]]
3505      =C-M-\= should now produce useful results.
3507      You can unindent the buffer with [[doc::org-unindent-buffer][org-unindent-buffer]].
3509 **** New option [[doc::org-allow-promoting-top-level-subtree][org-allow-promoting-top-level-subtree]]
3511      When =non-nil=, =S-M-<left>= will promote level-1 subtrees
3512      containing other subtrees.  The level-1 headline will be
3513      commented out.  You can revert to the previous state with =M-x
3514      undo RET=.
3516 *** Org Clock
3518 **** New keybinding =C-c C-x C-z= for [[doc::org-clock-resolve][org-clock-resolve]]
3520 **** New keybinding =C-c C-x C-q= for [[doc::org-clock-cancel][org-clock-cancel]]
3522 **** New command [[doc::org-clock-in-last][org-clock-in-last]] to clock in the last clocked item
3524      This command is bound to =C-c C-x C-x= and will clock in the last
3525      clocked entry, if any.
3527 **** =C-u M-x= [[doc::org-clock-out][org-clock-out]] =RET= now prompts for a state to switch to
3529 **** =S-M-<up/down>= on a clock timestamps adjusts the previous/next clock
3531 **** New option [[doc::org-clock-continuously][org-clock-continuously]]
3533      When set to =nil=, clocking in a task will first try to find the
3534      last clocked out task and restart from when that task was clocked
3535      out.
3537      You can temporarily activate continuous clocking with =C-u C-u
3538      C-u M-x= [[doc::org-clock-in][org-clock-in]] =RET= (three universal prefix arguments)
3539      and =C-u C-u M-x= [[org-clock-in-last][org-clock-in-last]] =RET= (two universal prefix
3540      arguments).
3543 **** New option [[doc::org-clock-frame-title-format][org-clock-frame-title-format]]
3545      This option sets the value of =frame-title-format= when clocking
3546      in.
3548 **** New options for controlling the clockreport display
3550      [[doc::org-clock-file-time-cell-format][org-clock-file-time-cell-format]]: Format string for the file time
3551      cells in clockreport.
3553      [[doc::org-clock-total-time-cell-format][org-clock-total-time-cell-format]]: Format string for the total
3554      time cells in clockreport.
3557 **** New options for controlling the clock/timer display
3559      [[doc::org-clock-clocked-in-display][org-clock-clocked-in-display]]: control whether the current clock
3560      is displayed in the mode line and/or frame title.
3562      [[doc::org-timer-display][org-timer-display]]: control whether the current timer is displayed
3563      in the mode line and/or frame title.
3565      This allows the clock and timer to be displayed in the frame
3566      title instead of, or as well as, the mode line.  This is useful
3567      for people with limited space in the mode line but with ample
3568      space in the frame title.
3570 *** Org Appearance
3572 **** New option [[doc::org-custom-properties][org-custom-properties]]
3574      The visibility of properties listed in this options can be turn
3575      on/off with [[doc::org-toggle-custom-properties-visibility][org-toggle-custom-properties-visibility]].  This might
3576      be useful for properties used by third-part tools or that you
3577      don't want to see temporarily.
3579 **** New command [[doc::org-redisplay-inline-images][org-redisplay-inline-images]]
3581      This will redisplay all images.  It is bound to =C-c C-x C-M-v=.
3583 **** New entities in =org-entities.el=
3585      There are these new entities:
3587      : ("tilde" "\\~{}" nil "&tilde;" "~" "~" "~")
3588      : ("slash" "/" nil "/" "/" "/" "/")
3589      : ("plus" "+" nil "+" "+" "+" "+")
3590      : ("under" "\\_" nil "_" "_" "_" "_")
3591      : ("equal" "=" nil "=" "=" "=" "=")
3592      : ("asciicirc" "\\textasciicircum{}" nil "^" "^" "^" "^")
3594 **** New face =org-list-dt= for definition terms
3595 **** New face =org-date-selected= for the selected calendar day
3596 **** New face value for =org-document-title=
3598      The face is back to a normal height.
3600 *** Org Columns
3602 **** New speed command =:= to activate the column view
3603 **** New special property =CLOCKSUM_T= to display today's clocked time
3605      You can use =CLOCKSUM_T= the same way you use =CLOCKSUM=.  It
3606      will display the time spent on tasks for today only.
3608 **** Use the =:COLUMNS:= property in columnview dynamic blocks
3610      If the =:COLUMNS:= is set in a subtree, the columnview dynamic
3611      block will use its value as the column format.
3613 **** Consider inline tasks when computing a sum
3615 *** Org Dates and Time Stamps
3617 **** Enhanced [[doc::org-sparse-tree][org-sparse-tree]]
3619      =C-c /= can now check for time ranges.
3621      When checking for dates with =C-c /= it is useful to change the
3622      type of dates that you are interested in.  You can now do this
3623      interactively with =c= after =C-c /= and/or by setting
3624      [[doc::org-sparse-tree-default-date-type][org-sparse-tree-default-date-type]] to the default value you want.
3626 **** Support for hourly repeat cookies
3628      You can now use
3630      : SCHEDULED: <2012-08-20 lun. 08:00 +1h>
3632      if you want to add an hourly repeater to an entry.
3634 **** =C-u C-u C-c .= inserts a time-stamp with no prompt
3636 **** When (setq [[doc::org-read-date-prefer-future][org-read-date-prefer-future]] 'time), accept days in the prompt
3638      "8am Wed" and "Wed 8am" are now acceptable values when entering a
3639      date from the prompt.  If [[doc::org-read-date-prefer-future][org-read-date-prefer-future]] is set to
3640      =time=, this will produce the expected prompt indication.
3642 **** New option [[doc::org-datetree-add-timestamp][org-datetree-add-timestamp]]
3644      When set to =non-nil=, datetree entries will also have a
3645      timestamp.  This is useful if you want to see these entries in a
3646      sparse tree with =C-c /=.
3648 *** Org Capture
3650 **** New command [[doc::org-capture-string][org-capture-string]]
3652      M-x [[doc::org-capture-string][org-capture-string]] RET will prompt for a string and a capture
3653      template.  The string will be used as an annotation for the
3654      template.  This is useful when capturing in batch mode as it lets
3655      you define the content of the template without being in Emacs.
3657 **** New option [[doc::org-capture-templates-contexts][org-capture-templates-contexts]]
3659      Setting this option allows you to define specific context where
3660      capture templates should be available from.  For example, when
3661      set to this value
3663      #+BEGIN_SRC emacs-lisp
3664   (setq org-capture-templates-contexts
3665         '(("c" (in-mode . "message-mode"))))
3666 #+END_SRC
3668      then the =c= capture template will only be available from
3669      =message-mode= buffers.  See the docstring and the manual for
3670      more details on how to use this.
3672 **** New =%l= template to insert the literal link
3673 **** New option [[doc::org-capture-bookmark][org-capture-bookmark]]
3675      Org used to automatically add a bookmark with capture a note.
3676      You can now turn this on by setting [[doc::org-capture-bookmark][org-capture-bookmark]] to
3677      =nil=.
3679 **** Expand =%<num>= escape sequences into text entered for <num>'th =%^{PROMPT}= escape
3681      See the manual for more explanations.
3683 **** More control over empty lines
3685      You can use =:empty-lines-before= and =:empty-lines-after= to
3686      control the insertion of empty lines.  Check the manual for more
3687      explanations.
3689 **** New hook [[doc::org-capture-prepare-finalize-hook][org-capture-prepare-finalize-hook]]
3691      This new hook runs before the finalization process starts.
3693 *** Org Export
3695 **** New functions =orgtbl-to-table.el= and =orgtbl-to-unicode=
3697      =orgtbl-to-table.el= convert the table to a =table.el= table, and
3698      =orgtbl-to-unicode= will use =ascii-art-to-unicode.el= (when
3699      available) to print beautiful tables.
3701 **** [[doc::org-table-export][org-table-export]] now a bit clever about the target format
3703      When you specify a file name like =table.csv=, [[doc::org-table-export][org-table-export]]
3704      will now suggest =orgtbl-to-csv= the default method for exporting
3705      the table.
3707 **** New option [[doc::org-export-date-timestamp-format][org-export-date-timestamp-format]]
3709      The option allows to set a time string format for Org timestamps
3710      in the #+DATE option.
3712 **** LaTeX: New options for exporting table rules :tstart, :hline and :tend
3714      See [[doc::org-export-latex-tables-hline][org-export-latex-tables-hline]] and [[doc::org-export-latex-tables-tend][org-export-latex-tables-tend]].
3716 **** LaTeX: You can now set =:hfmt= from =#+ATTR_LaTeX=
3717 **** Beamer: Add support and keybinding for the =exampleblock= environment
3719      Add support for these languages in [[doc::org-export-language-setup][org-export-language-setup]].
3720      More languages are always welcome.
3722 **** Beamer: New option [[doc::org-beamer-inherited-properties][org-beamer-inherited-properties]]
3724      This option allows Beamer export to inherit some properties.
3725      Thanks to Carsten for implementing this.
3727 **** ODT: Add support for ODT export in org-bbdb.el
3728 **** ODT: Add support for indented tables (see [[https://orgmode.org/cgit.cgi/org-mode.git/commit/?id=e9fd33][this commit]] for details)
3729 **** ODT: Improve the conversion from ODT to other formats
3730 **** ASCII: Swap the level-1/level-2 characters to underline the headlines
3731 **** Support for Chinese, simplified Chinese, Russian, Ukrainian and Japanese
3732 **** HTML: New option [[doc::org-export-html-date-format-string][org-export-html-date-format-string]]
3734      Format string to format the date and time in HTML export.  Thanks
3735      to Sébastien Vauban for this patch.
3737 *** Org Babel
3739 **** New =:results drawer= parameter
3741 =:results drawer= replaces =:results wrap=, which is deprecated but still
3742 supported.
3744 **** =:results org= now put results in a =#+BEGIN_SRC org= block
3746 =:results org= used to put results in a =#+BEGIN_ORG= block but it now puts
3747 results in a =#+BEGIN_SRC org= block, with comma-escaped lines.
3749 =#+BEGIN_ORG= blocks are obsolete.
3751 **** Exporting =#+BEGIN_SRC org= blocks exports the code
3753 It used to exports the results of the code.
3755 *** Miscellaneous
3757 **** New menu entry for [[doc::org-refile][org-refile]]
3758 **** Allow capturing to encrypted entries
3760 If you capture to an encrypted entry, it will be decrypted before
3761 inserting the template then re-encrypted after finalizing the capture.
3763 **** Inactive timestamps are now handled in tables
3765 Calc can do computation on active time-stamps like <2012-09-29 sat.>.
3766 Inactive time-stamps in a table's cell are now internally deactivated so
3767 that Calc formulas can operate on them.
3769 **** [[doc::org-table-number-regexp][org-table-number-regexp]] can now accept comma as decimal mark
3770 **** Org allows a new property =APPT_WARNTIME=
3772      You can set it with the =W= speedy key or set it manually.  When
3773      set, exporting to iCalendar and [[doc::org-agenda-to-appt][org-agenda-to-appt]] will use the
3774      value of this property as the number of minutes for the warning
3775      alarm.
3777 **** New command [[doc::org-inc-effort][org-inc-effort]]
3779      This will increment the effort value.
3781      It is bound to =C-c C-x E= and to =E= as a speedy command.
3783 **** Attach: Add support for creating symbolic links
3785      =org-attach-method= now supports a new method =lns=, allowing to
3786      attach symbolic links.
3788 **** Archive: you can now archive to a datetree
3790 **** New option [[doc::org-inlinetask-show-first-star][org-inlinetask-show-first-star]]
3792      =Non-nil= means display the first star of an inline task as
3793      additional marker.  When =nil=, the first star is not shown.
3795 **** New option [[doc::org-latex-preview-ltxpng-directory][org-latex-preview-ltxpng-directory]]
3797      This lets you define the path for the =ltxpng/= directory.
3799 **** You can now use imagemagick instead of dvipng to preview LaTeX fragments
3800 **** You can now turn off [[doc::orgstruct++-mode][orgstruct++-mode]] safely
3801 **** =C-u C-c C-c= on list items to add check boxes
3803      =C-u C-c C-c= will add an empty check box on a list item.
3805      When hit from the top of the list, it will add check boxes for
3806      all top level list items.
3808 **** =org-list-ending-method= and =org-list-end-regexp= are now obsolete
3810      Fall back on using =org-list-end-re= only, which see.
3812 **** org-feed.el now expands =%(sexp)= templates
3813 **** New option [[doc::org-protocol-data-separator][org-protocol-data-separator]]
3815 **** New option [[doc::org-ditaa-jar-option][org-ditaa-jar-option]] to specify the ditaa jar file
3817 **** New possible value for [[doc::org-loop-over-headlines-in-active-region][org-loop-over-headlines-in-active-region]]
3819      When [[doc::org-loop-over-headlines-in-active-region][org-loop-over-headlines-in-active-region]] is set to
3820      =start-level=, the command will loop over the active region but
3821      will only act upon entries that are of the same level than the
3822      first headline in the region.
3824 **** New option [[doc::org-habit-show-all-today][org-habit-show-all-today]]
3826      When set to =t=, show all (even unscheduled) habits on today's
3827      agenda.
3829 ** Important bug fixes
3831 *** M-TAB on options keywords perform completion correctly again
3833     If you hit =M-TAB= on keywords like =#+TITLE=, Org will try to
3834     perform completion with meaningful values.
3836 *** Add licenses to javascript embedded and external code snippets
3838     Embedded javascript code produced when exporting an Org file to
3839     HTML is now licensed under GPLv3 (or later), and the copyright is
3840     owned by the Free Software Foundation, Inc.
3842     The javascript code for embedding MathJax in the browser mentions
3843     the MathJax copyright and the Apache 2.0 license.
3845     The javascript code for embedding =org-injo.js= in the browser
3846     mentions the copyright of Sebastian Rose and the GPLv3 (or later)
3847     license.
3849     =org-export-html-scripts= is now a variable, so that you can adapt
3850     the code and the license to your needs.
3852     See https://www.gnu.org/philosophy/javascript-trap.html for
3853     explanations on why these changes were necessary.
3855 * Version 7.8.11
3857 ** Incompatible changes
3859 *** Emacs 21 support has been dropped
3861     Do not use Org mode 7.xx with Emacs 21, use [[https://orgmode.org/org-6.36c.zip][version 6.36c]] instead.
3863 *** XEmacs support requires the XEmacs development version
3865     To use Org mode 7.xx with XEmacs, you need to run the developer
3866     version of XEmacs.  We were about to drop XEmacs support entirely,
3867     but Michael Sperber stepped in and made changes to XEmacs that
3868     made it easier to keep the support.  Thanks to Michael for this
3869     last-minute save.
3871 *** New keys for TODO sparse trees
3873     The key =C-c C-v= is now reserved for Org Babel action.  TODO
3874     sparse trees can still be made with =C-c / t= (all not-done
3875     states) and =C-c / T= (specific states).
3877 *** The Agenda =org-agenda-ndays= is now obsolete
3879     The variable =org-agenda-ndays= is obsolete - please use
3880     =org-agenda-span= instead.
3882     Thanks to Julien Danjou for this.
3884 *** Changes to the intended use of =org-export-latex-classes=
3886     So far this variable has been used to specify the complete header
3887     of the LaTeX document, including all the =\usepackage= calls
3888     necessary for the document.  This setup makes it difficult to
3889     maintain the list of packages that Org itself would like to call,
3890     for example for the special symbol support it needs.
3892     First of all, you can *opt out of this change* in the following
3893     way: You can say: /I want to have full control over headers, and I
3894     will take responsibility to include the packages Org needs/.  If
3895     that is what you want, add this to your configuration and skip the
3896     rest of this section (except maybe for the description of the
3897     =[EXTRA]= place holder):
3899     #+begin_src emacs-lisp
3900    (setq org-export-latex-default-packages-alist nil
3901          org-export-latex-packages-alist nil)
3902     #+end_src
3904     /Continue to read here if you want to go along with the modified
3905     setup./
3907     There are now two variables that should be used to list the LaTeX
3908     packages that need to be included in all classes.  The header
3909     definition in =org-export-latex-classes= should then not contain
3910     the corresponding =\usepackage= calls (see below).
3912     The two new variables are:
3914     1. =org-export-latex-default-packages-alist= :: This is the
3915          variable where Org-mode itself puts the packages it needs.
3916          Normally you should not change this variable.  The only
3917          reason to change it anyway is when one of these packages
3918          causes a conflict with another package you want to use.  Then
3919          you can remove that packages and hope that you are not using
3920          Org-mode functionality that needs it.
3922     2. =org-export-latex-packages-alist= :: This is the variable where
3923          you can put the packages that you'd like to use across all
3924          classes.
3926     The sequence how these customizations will show up in the LaTeX
3927     document are:
3929     1. Header from =org-export-latex-classes=
3930     2. =org-export-latex-default-packages-alist=
3931     3. =org-export-latex-packages-alist=
3932     4. Buffer-specific things set with =#+LaTeX_HEADER:=
3934     If you want more control about which segment is placed where, or
3935     if you want, for a specific class, have full control over the
3936     header and exclude some of the automatic building blocks, you can
3937     put the following macro-like place holders into the header:
3939     #+begin_example
3940     [DEFAULT-PACKAGES]      \usepackage statements for default packages
3941     [NO-DEFAULT-PACKAGES]   do not include any of the default packages
3942     [PACKAGES]              \usepackage statements for packages
3943     [NO-PACKAGES]           do not include the packages
3944     [EXTRA]                 the stuff from #+LaTeX_HEADER
3945     [NO-EXTRA]              do not include #+LaTeX_HEADER stuff
3946     #+end_example
3948     If you have currently customized =org-export-latex-classes=, you
3949     should revise that customization and remove any package calls that
3950     are covered by =org-export-latex-default-packages-alist=.  This
3951     applies to the following packages:
3953     - inputenc
3954     - fontenc
3955     - fixltx2e
3956     - graphicx
3957     - longtable
3958     - float
3959     - wrapfig
3960     - soul
3961     - t1enc
3962     - textcomp
3963     - marvosym
3964     - wasysym
3965     - latexsym
3966     - amssymb
3967     - hyperref
3969     If one of these packages creates a conflict with another package
3970     you are using, you can remove it from
3971     =org-export-latex-default-packages-alist=.  But then you risk that
3972     some of the advertised export features of Org will not work
3973     properly.
3975     You can also consider moving packages that you use in all classes
3976     to =org-export-latex-packages-alist=.  If necessary, put the place
3977     holders so that the packages get loaded in the right sequence.  As
3978     said above, for backward compatibility, if you omit the place
3979     holders, all the variables will dump their content at the end of
3980     the header.
3982 *** The constant =org-html-entities= is obsolete
3984     Its content is now part of the new constant =org-entities=, which
3985     is defined in the file org-entities.el.  =org-html-entities= was
3986     an internal variable, but it is possible that some users did write
3987     code using it.
3989 *** =org-bbdb-anniversary-format-alist= has changed
3991     Please check the docstring and update your settings accordingly.
3993 *** Deleted =org-mode-p=
3995     This function has been deleted: please update your code.
3997 ** Important new features
3999 *** New Org to ODT exporter
4001     Jambunathan's Org to ODT exporter is now part of Org.
4003     To use it, it `C-c C-e o' in an Org file.  See the documentation
4004     for more information on how to customize it.
4006 *** org-capture.el is now the default capture system
4008     This replaces the earlier system org-remember.  The manual only
4009     describes org-capture, but for people who prefer to continue to
4010     use org-remember, we keep a static copy of the former manual
4011     section [[https://orgmode.org/org-remember.pdf][chapter about remember]].
4013     The new system has a technically cleaner implementation and more
4014     possibilities for capturing different types of data.  See
4015     [[http://thread.gmane.org/gmane.emacs.orgmode/26441/focus%3D26441][Carsten's announcement]] for more details.
4017     To switch over to the new system:
4019     1. Run
4021      : M-x org-capture-import-remember-templates RET
4023        to get a translated version of your remember templates into the
4024        new variable =org-capture-templates=.  This will "mostly" work,
4025        but maybe not for all cases.  At least it will give you a good
4026        place to modify your templates.  After running this command,
4027        enter the customize buffer for this variable with
4029      : M-x customize-variable RET org-capture-templates RET
4031        and convince yourself that everything is OK.  Then save the
4032        customization.
4034     2. Bind the command =org-capture= to a key, similar to what you did
4035        with org-remember:
4037      : (define-key global-map "\C-cc" 'org-capture)
4039        If your fingers prefer =C-c r=, you can also use this key once
4040        you have decided to move over completely to the new
4041        implementation.  During a test time, there is nothing wrong
4042        with using both system in parallel.
4044 ** New libraries
4046 *** New Org libraries
4047 **** org-eshell.el (Konrad Hinsen)
4049      Implement links to eshell buffers.
4051 **** org-special-blocks (Carsten Dominik)
4053      This package generalizes the #+begin_foo and #+end_foo tokens.
4055      To use, put the following in your init file:
4057      #+BEGIN_EXAMPLE
4058 (require 'org-special-blocks)
4059 #+END_EXAMPLE
4061      The tokens #+begin_center, #+begin_verse, etc. existed
4062      previously.  This package generalizes them (at least for the
4063      LaTeX and html exporters).  When a #+begin_foo token is
4064      encountered by the LaTeX exporter, it is expanded
4065      into \begin{foo}.  The text inside the environment is not
4066      protected, as text inside environments generally is.
4067      When #+begin_foo is encountered by the html exporter, a div with
4068      class foo is inserted into the HTML file.  It is up to the user
4069      to add this class to his or her stylesheet if this div is to mean
4070      anything.
4072 **** org-taskjuggler.el (Christian Egli)
4074      Christian Egli's /org-taskjuggler.el/ module is now part of Org.
4075      He also wrote a [[https://orgmode.org/worg/org-tutorials/org-taskjuggler.php][tutorial]] for it.
4077 **** org-ctags.el (Paul Sexton)
4079      Targets like =<<my target>>= can now be found by Emacs' etag
4080      functionality, and Org-mode links can be used to to link to
4081      etags, also in non-Org-mode files.  For details, see the file
4082      /org-ctags.el/.
4084      This feature uses a new hook =org-open-link-functions= which will
4085      call function to do something special with text links.
4087      Thanks to Paul Sexton for this contribution.
4089 **** org-docview.el (Jan Böcker)
4091      This new module allows links to various file types using docview, where
4092      Emacs displays images of document pages.  Docview link types can point
4093      to a specific page in a document, for example to page 131 of the
4094      Org-mode manual:
4096      : [[docview:~/.elisp/org/doc/org.pdf::131][Org-Mode Manual]]
4098      Thanks to Jan Böcker for this contribution.
4100 *** New Babel libraries
4102 - ob-picolisp.el (Thorsten Jolitz)
4103 - ob-fortran.el (Sergey Litvinov)
4104 - ob-shen.el (Eric Schulte)
4105 - ob-maxima.el (Eric S Fraga)
4106 - ob-java.el (Eric Schulte)
4107 - ob-lilypond.el (Martyn Jago)
4108 - ob-awk.el (Eric Schulte)
4110 ** Other new features and various enhancements
4112 *** Hyperlinks
4114 **** Org-Bibtex -- major improvements
4116      Provides support for managing bibtex bibliographical references
4117      data in headline properties.  Each headline corresponds to a
4118      single reference and the relevant bibliographic meta-data is
4119      stored in headline properties, leaving the body of the headline
4120      free to hold notes and comments.  Org-bibtex is aware of all
4121      standard bibtex reference types and fields.
4123      The key new functions are
4125      - org-bibtex-check :: queries the user to flesh out all required
4126           (and with prefix argument optional) bibtex fields available
4127           for the specific reference =type= of the current headline.
4129      - org-bibtex-create :: Create a new entry at the given level,
4130           using org-bibtex-check to flesh out the relevant fields.
4132      - org-bibtex-yank :: Yank a bibtex entry on the kill ring as a
4133           formatted Org-mode headline into the current buffer
4135      - org-bibtex-export-to-kill-ring :: Export the current headline
4136           to the kill ring as a formatted bibtex entry.
4138 **** org-gnus.el now allows link creation from messages
4140      You can now create links from messages.  This is particularly
4141      useful when the user wants to stored messages that he sends, for
4142      later check.  Thanks to Ulf Stegemann for the patch.
4144 **** Modified link escaping
4146      David Maus worked on `org-link-escape'.  See [[http://article.gmane.org/gmane.emacs.orgmode/37888][his message]]:
4148      : Percent escaping is used in Org mode to escape certain characters
4149      : in links that would either break the parser (e.g. square brackets
4150      : in link target oder description) or are not allowed to appear in
4151      : a particular link type (e.g. non-ascii characters in a http:
4152      : link).
4153      :
4154      : With this change in place Org will apply percent escaping and
4155      : unescaping more consistently especially for non-ascii characters.
4156      : Additionally some of the outstanding bugs or glitches concerning
4157      : percent escaped links are solved.
4159      Thanks a lot to David for this work.
4161 **** Make =org-store-link= point to directory in a dired buffer
4163      When, in a dired buffer, the cursor is not in a line listing a
4164      file, `org-store-link' will store a link to the directory.
4166      Patch by Stephen Eglen.
4168 **** Allow regexps in =org-file-apps= to capture link parameters
4170      The way extension regexps in =org-file-apps= are handled has
4171      changed.  Instead of matching against the file name, the regexps
4172      are now matched against the whole link, and you can use grouping
4173      to extract link parameters which you can then use in a command
4174      string to be executed.
4176      For example, to allow linking to PDF files using the syntax
4177      =file:/doc.pdf::<page number>=, you can add the following entry
4178      to org-file-apps:
4180      #+begin_example
4181      Extension: \.pdf::\([0-9]+\)\'
4182      Command:   evince "%s" -p %1
4183      #+end_example
4185      Thanks to Jan Böcker for a patch to this effect.
4187 *** Dates and time
4189 **** Allow relative time when scheduling/adding a deadline
4191      You can now use relative duration strings like "-2d" or "++3w"
4192      when calling =org-schedule= or =org-deadline=: it will schedule
4193      (or set the deadline for) the item respectively two days before
4194      today and three weeks after the current timestamp, if any.
4196      You can use this programmatically: =(org-schedule nil "+2d")=
4197      will work on the current entry.
4199      You can also use this while (bulk-)rescheduling and
4200      (bulk-)resetting the deadline of (several) items from the agenda.
4202      Thanks to Memnon Anon for a heads up about this!
4204 **** American-style dates are now understood by =org-read-date=
4206      So when you are prompted for a date, you can now answer like this
4208      #+begin_example
4209      2/5/3         --> 2003-02-05
4210      2/5           --> <CURRENT-YEAR>-02-05
4211      #+end_example
4213 *** Agenda
4215 **** =org-agenda-custom-commands= has a default value
4217      This option used to be `nil' by default.  This now has a default
4218      value, displaying an agenda and all TODOs.  See the docstring for
4219      details.  Thanks to Carsten for this.
4221 **** Improved filtering through =org-agenda-to-appt=
4223      The new function allows the user to refine the scope of entries
4224      to pass to =org-agenda-get-day-entries= and allows to filter out
4225      entries using a function.
4227      Thanks to Peter Münster for raising a related issue and to
4228      Tassilo Horn for this idea.  Also thanks to Peter Münster for
4229      [[git:68ffb7a7][fixing a small bug]] in the final implementation.
4231 **** Allow ap/pm times in agenda time grid
4233      Times in the agenda can now be displayed in am/pm format.  See
4234      the new variable =org-agenda-timegrid-use-ampm=.  Thanks to
4235      C. A. Webber for a patch to this effect.
4237 **** Agenda: Added a bulk "scattering" command
4239      =B S= in the agenda buffer will cause tasks to be rescheduled a
4240      random number of days into the future, with 7 as the default.
4241      This is useful if you've got a ton of tasks scheduled for today,
4242      you realize you'll never deal with them all, and you just want
4243      them to be distributed across the next N days.  When called with
4244      a prefix arg, rescheduling will avoid weekend days.
4246      Thanks to John Wiegley for this.
4248 *** Exporting
4250 **** Simplification of org-export-html-preamble/postamble
4252      When set to `t', export the preamble/postamble as usual, honoring
4253      the =org-export-email/author/creator-info= variables.
4255      When set to a formatting string, insert this string.  See the
4256      docstring of these variable for details about available
4257      %-sequences.
4259      You can set =:html-preamble= in publishing project in the same
4260      way: `t' means to honor =:email/creator/author-info=, and a
4261      formatting string will insert a string.
4263 **** New exporters to Latin-1 and UTF-8
4265      While Ulf Stegemann was going through the entities list to
4266      improve the LaTeX export, he had the great idea to provide
4267      representations for many of the entities in Latin-1, and for all
4268      of them in UTF-8.  This means that we can now export files rich
4269      in special symbols to Latin-1 and to UTF-8 files.  These new
4270      exporters can be reached with the commands =C-c C-e n= and =C-c
4271      C-e u=, respectively.
4273      When there is no representation for a given symbol in the
4274      targeted coding system, you can choose to keep the TeX-macro-like
4275      representation, or to get an "explanatory" representation.  For
4276      example, =\simeq= could be represented as "[approx. equal to]".
4277      Please use the variable =org-entities-ascii-explanatory= to state
4278      your preference.
4280 **** HTML export: Add class to outline containers using property
4282      The =HTML_CONTAINER_CLASS= property can now be used to add a
4283      class name to the outline container of a node in HTML export.
4285 **** Throw an error when creating an image from a LaTeX snippet fails
4287      This behavior can be configured with the new option variable
4288      =org-format-latex-signal-error=.
4290 **** Support for creating BEAMER presentations from Org-mode documents
4292      Org-mode documents or subtrees can now be converted directly in
4293      to BEAMER presentation.  Turning a tree into a simple
4294      presentations is straight forward, and there is also quite some
4295      support to make richer presentations as well.  See the [[https://orgmode.org/manual/Beamer-class-export.html#Beamer-class-export][BEAMER
4296      section]] in the manual for more details.
4298      Thanks to everyone who has contributed to the discussion about
4299      BEAMER support and how it should work.  This was a great example
4300      for how this community can achieve a much better result than any
4301      individual could.
4303 *** Refiling
4305 **** Refile targets can now be cached
4307      You can turn on caching of refile targets by setting the variable
4308      =org-refile-use-cache=.  This should speed up refiling if you
4309      have many eligible targets in many files.  If you need to update
4310      the cache because Org misses a newly created entry or still
4311      offers a deleted one, press =C-0 C-c C-w=.
4313 **** New logging support for refiling
4315      Whenever you refile an item, a time stamp and even a note can be
4316      added to this entry.  For details, see the new option
4317      =org-log-refile=.
4319      Thanks to Charles Cave for this idea.
4321 *** Completion
4323 **** In-buffer completion is now done using John Wiegley's pcomplete.el
4325      Thanks to John Wiegley for much of this code.
4327 *** Tables
4329 **** New command =org-table-transpose-table-at-point=
4331      See the docstring.  This hack from Juan Pechiar is now part of
4332      Org's core.  Thanks to Juan!
4334 **** Display field's coordinates when editing it with =C-c `=
4336      When editing a field with =C-c `=, the field's coordinate will
4337      the displayed in the buffer.
4339      Thanks to Michael Brand for a patch to this effect.
4341 **** Spreadsheet computation of durations and time values
4343      If you want to compute time values use the =T= flag, either in
4344      Calc formulas or Elisp formulas:
4346      | Task 1 | Task 2 |   Total |
4347      |--------+--------+---------|
4348      |  35:00 |  35:00 | 1:10:00 |
4349      #+TBLFM: @2$3=$1+$2;T
4351      Values must be of the form =[HH:]MM:SS=, where hours are
4352      optional.
4354      Thanks to Martin Halder, Eric Schulte and Carsten for code and
4355      feedback on this.
4357 **** Implement formulas applying to field ranges
4359      Carsten implemented this field-ranges formulas.
4361      : A frequently requested feature for tables has been to be able to define
4362      : row formulas in a way similar to column formulas.  The patch below allows
4363      : things like
4364      :
4365      : @3=
4366      : @2$2..@5$7=
4367      : @I$2..@II$4=
4368      :
4369      : as the left hand side for table formulas in order to write a formula that
4370      : is valid for an entire column or for a rectangular section in a
4371      : table.
4373      Thanks a lot to Carsten for this.
4375 **** Sending radio tables from org buffers is now allowed
4377      Org radio tables can no also be sent inside Org buffers.  Also,
4378      there is a new hook which get called after a table has been sent.
4380      Thanks to Seweryn Kokot.
4382 *** Lists
4384 **** Improved handling of lists
4386      Nicolas Goaziou extended and improved the way Org handles lists.
4388      1. Indentation of text determines again end of items in
4389         lists. So, some text less indented than the previous item
4390         doesn't close the whole list anymore, only all items more
4391         indented than it.
4393      2. Alphabetical bullets are implemented, through the use of the
4394         variable `org-alphabetical-lists'. This also adds alphabetical
4395         counters like [@c] or [@W].
4397      3. Lists can now safely contain drawers, inline tasks, or various
4398         blocks, themselves containing lists. Two variables are
4399         controlling this: `org-list-forbidden-blocks', and
4400         `org-list-export-context'.
4402      4. Improve `newline-and-indent' (C-j): used in an item, it will
4403         keep text from moving at column 0. This allows to split text
4404         and make paragraphs and still not break the list.
4406      5. Improve `org-toggle-item' (C-c -): used on a region with
4407         standard text, it will change the region into one item. With a
4408         prefix argument, it will fallback to the previous behavior and
4409         make every line in region an item. It permits to easily
4410         integrate paragraphs inside a list.
4412      6. `fill-paragraph' (M-q) now understands lists. It can freely be
4413         used inside items, or on text just after a list, even with no
4414         blank line around, without breaking list structure.
4416      Thanks a lot to Nicolas for all this!
4418 *** Inline display of linked images
4420     Images can now be displayed inline.  The key C-c C-x C-v does
4421     toggle the display of such images.  Note that only image links
4422     that have no description part will be inlined.
4424 *** Implement offsets for ordered lists
4426     If you want to start an ordered plain list with a number different
4427     from 1, you can now do it like this:
4429     : 1. [@start:12] will star a lit a number 12
4431 *** Babel: code block body expansion for table and preview
4433     In org-babel, code is "expanded" prior to evaluation. I.e. the
4434     code that is actually evaluated comprises the code block contents,
4435     augmented with the extra code which assigns the referenced data to
4436     variables. It is now possible to preview expanded contents, and
4437     also to expand code during during tangling. This expansion takes
4438     into account all header arguments, and variables.
4440     A new keybinding `C-c M-b p' bound to `org-babel-expand-src-block'
4441     can be used from inside of a source code block to preview its
4442     expanded contents (which can be very useful for debugging).
4443     tangling
4445     The expanded body can now be tangled, this includes variable
4446     values which may be the results of other source-code blocks, or
4447     stored in headline properties or tables. One possible use for this
4448     is to allow those using org-babel for their emacs initialization
4449     to store values (e.g. usernames, passwords, etc...) in headline
4450     properties or in tables.
4452     Org-babel now supports three new header arguments, and new default
4453     behavior for handling horizontal lines in tables (hlines), column
4454     names, and rownames across all languages.
4456 *** Editing Convenience and Appearance
4458 **** New command =org-copy-visible= (=C-c C-x v=)
4460      This command will copy the visible text in the region into the
4461      kill ring.  Thanks to Florian Beck for this function and to
4462      Carsten for adding it to org.el and documenting it!
4464 **** Make it possible to protect hidden subtrees from being killed by =C-k=
4466      See the new variable =org-ctrl-k-protect-subtree=.  This was a
4467      request by Scott Otterson.
4469 **** Implement pretty display of entities, sub-, and superscripts.
4471      The command =C-c C-x \= toggles the display of Org's special
4472      entities like =\alpha= as pretty unicode characters.  Also, sub
4473      and superscripts are displayed in a pretty way (raised/lower
4474      display, in a smaller font).  If you want to exclude sub- and
4475      superscripts, see the variable
4476      =org-pretty-entities-include-sub-superscripts=.
4478      Thanks to Eric Schulte and Ulf Stegeman for making this possible.
4480 **** New faces for title, date, author and email address lines
4482      The keywords in these lines are now dimmed out, and the title is
4483      displayed in a larger font, and a special font is also used for
4484      author, date, and email information.  This is implemented by the
4485      following new faces:
4487      =org-document-title=
4488      =org-document-info=
4489      =org-document-info-keyword=
4491      In addition, the variable =org-hidden-keywords= can be used to
4492      make the corresponding keywords disappear.
4494      Thanks to Dan Davison for this feature.
4496 **** Simpler way to specify faces for tags and todo keywords
4498      The variables =org-todo-keyword-faces=, =org-tag-faces=, and
4499      =org-priority-faces= now accept simple color names as
4500      specifications.  The colors will be used as either foreground or
4501      background color for the corresponding keyword.  See also the
4502      variable =org-faces-easy-properties=, which governs which face
4503      property is affected by this setting.
4505      This is really a great simplification for setting keyword faces.
4506      The change is based on an idea and patch by Ryan Thompson.
4508 **** <N> in tables now means fixed width, not maximum width
4510      Requested by Michael Brand.
4512 **** Better level cycling function
4514      =TAB= in an empty headline cycles the level of that headline
4515      through likely states.  Ryan Thompson implemented an improved
4516      version of this function, which does not depend upon when exactly
4517      this command is used.  Thanks to Ryan for this improvement.
4519 **** Adaptive filling
4521      For paragraph text, =org-adaptive-fill-function= did not handle
4522      the base case of regular text which needed to be filled.  This is
4523      now fixed.  Among other things, it allows email-style ">"
4524      comments to be filled correctly.
4526      Thanks to Dan Hackney for this patch.
4528 **** `org-reveal' (=C-c C-r=) also decrypts encrypted entries (org-crypt.el)
4530      Thanks to Richard Riley for triggering this change.
4532 **** Better automatic letter selection for TODO keywords
4534      When all first letters of keywords have been used, Org now
4535      assigns more meaningful characters based on the keywords.
4537      Thanks to Mikael Fornius for this patch.
4539 *** Clocking
4541 **** Clock: Allow synchronous update of timestamps in CLOCK log
4543      Using =S-M-<up/down>= on CLOCK log timestamps will
4544      increase/decrease the two timestamps on this line so that
4545      duration will keep the same.  Note that duration can still be
4546      slightly modified in case a timestamp needs some rounding.
4548      Thanks to Rainer Stengele for this idea.
4550 **** Localized clock tables
4552      Clock tables now support a new new =:lang= parameter, allowing
4553      the user to customize the localization of the table headers.  See
4554      the variable =org-clock-clocktable-language-setup= which controls
4555      available translated strings.
4557 **** Show clock overruns in mode line
4559      When clocking an item with a planned effort, overrunning the
4560      planned time is now made visible in the mode line, for example
4561      using the new face =org-mode-line-clock-overrun=, or by adding an
4562      extra string given by =org-task-overrun-text=.
4564      Thanks to Richard Riley for a patch to this effect.
4566 **** Clock reports can now include the running, incomplete clock
4568      If you have a clock running, and the entry being clocked falls
4569      into the scope when creating a clock table, the time so far spent
4570      can be added to the total.  This behavior depends on the setting
4571      of =org-clock-report-include-clocking-task=.  The default is
4572      =nil=.
4574      Thanks to Bernt Hansen for this useful addition.
4576 *** Misc
4578 **** Improvements with inline tasks and indentation
4580      There is now a configurable way on how to export inline tasks.
4581      See the new variable =org-inlinetask-export-templates=.
4583      Thanks to Nicolas Goaziou for coding these changes.
4585 **** A property value of "nil" now means to unset a property
4587      This can be useful in particular with property inheritance, if
4588      some upper level has the property, and some grandchild of it
4589      would like to have the default settings (i.e. not overruled by a
4590      property) back.
4592      Thanks to Robert Goldman and Bernt Hansen for suggesting this
4593      change.
4595 **** New helper functions in org-table.el
4597      There are new functions to access and write to a specific table field.
4598      This is for hackers, and maybe for the org-babel people.
4600      #+begin_example
4601      org-table-get
4602      org-table-put
4603      org-table-current-line
4604      org-table-goto-line
4605      #+end_example
4607 **** Archiving: Allow to reverse order in target node
4609      The new option =org-archive-reversed-order= allows to have
4610      archived entries inserted in a last-on-top fashion in the target
4611      node.
4613      This was requested by Tom.
4615 **** Org-reveal: Double prefix arg shows the entire subtree of the parent
4617      This can help to get out of an inconsistent state produced for
4618      example by viewing from the agenda.
4620      This was a request by Matt Lundin.
4622 * License
4624   This file is part of GNU Emacs.
4626   GNU Emacs is free software: you can redistribute it and/or modify
4627   it under the terms of the GNU General Public License as published by
4628   the Free Software Foundation, either version 3 of the License, or
4629   (at your option) any later version.
4631   GNU Emacs is distributed in the hope that it will be useful,
4632   but WITHOUT ANY WARRANTY; without even the implied warranty of
4633   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4634   GNU General Public License for more details.
4636   You should have received a copy of the GNU General Public License
4637   along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.