ORG-NEWS: Deprecate `org-list-empty-line-terminates-plain-lists'
[org-mode.git] / etc / ORG-NEWS
blob065771c0075968eb76984805a39393c8ad9333c1
1 ORG NEWS -- history of user-visible changes.           -*- org -*-
3 #+LINK: doc http://orgmode.org/worg/doc.html#%s
4 #+LINK: git http://orgmode.org/w/?p=org-mode.git;a=commit;h=%s
6 Copyright (C) 2012-2013 Free Software Foundation, Inc.
7 See the end of the file for license conditions.
9 Please send Org bug reports to emacs-orgmode@gnu.org.
11 * Version 8.3
12 ** Incompatible changes
13 *** Remove ~export-block~ element type
14 For export back-end developers.
16 So called "Export blocks" are now raw "Special blocks".  As
17 a consequence ~export-block~ type doesn't exist anymore in parser, and
18 should not have a translator associated in an export back-end.
20 In order to tell the difference between a special block and a former
21 export block, a new predicate, ~org-export-raw-special-block-p~ is
22 implemented.
24 To put it simply, two steps may be needed to update a back-end
25 defining export blocks.
27 1. Remove any ~org-BACKEND-export-block~ function, associated filter
28    and remove ~export-block~ entry from back-end definition.  This
29    step can be omitted if you want to preserve backward-compatibility
30    with Org 8.2.  In this case, the function and filter will be used
31    in Org 8.2 but ignored in Org 8.3.
33 2. If there is a translator for special blocks, e.g.,
34    ~org-BACKEND-special-block~, first check if the current block is an
35    export block using the predicate and, if that is true, simply
36    insert raw value, obtained through block's ~:raw-value~
37    property. E.g.,
38    
39    #+BEGIN_SRC emacs-lisp
40    (defun org-latex-special-block (special-block contents info)
41      (if (org-export-raw-special-block-p special-block info)
42          (org-element-property :raw-value special-block)
43        ;; Usual handling for special blocks goes here.
44        ))
45    #+END_SRC
47    Note that If BACKEND is a derived back-end and doesn't implement
48    its own special block translator already, there is nothing to
49    change.  The parent back-end will take care of such blocks.
50 *** ~org-html-format-headline-function~ requires an additional argument
51 The function provided is required to accept export options, as
52 a plist, as its final (sixth) argument.
53 *** ~org-html-format-inlinetask-function~ requires an additional argument
54 The function provided is required to accept export options, as
55 a plist, as its final (seventh) argument.
56 ** Removed functions
57 *** Removed function ~org-beamer-insert-options-template~
58 This function inserted a Beamer specific template at point or in
59 current subtree.  Use ~org-export-insert-default-template~ instead, as
60 it provides more features and covers all export back-ends.  It is also
61 accessible from the export dispatcher.
62 ** Removed options
63 *** ~org-list-empty-line-terminates-plain-lists~ is deprecated
64 It will be kept in code base until next release, for backward
65 compatibility.
67 If you need to separate consecutive lists with blank lines, always use
68 two of them, as if this option was nil (default value).
69 *** Removed option =org-babel-sh-command=
70 This undocumented option defaulted to the value of =shell-file-name=
71 at the time of loading =ob-shell=.  The new behaviour is to use the
72 value of =shell-file-name= directly when the shell langage is =shell=.
73 To chose a different shell, either customize =shell-file-name= or bind
74 this variable locally.
75 *** Removed option =org-babel-sh-var-quote-fmt=
76 This undocumented option was supposed to provide different quoting
77 styles when changing the shell type.  Changing the shell type can now
78 be done directly from the source block and the quoting style has to be
79 compatible across all shells, so a customization doesn't make sense
80 anymore.  The chosen hard coded quoting style conforms to POSIX.
81 ** New features
82 *** Additional markup with =#+INCLUDE= keyword
83 The content of the included file can now be optionally marked up, for
84 instance as HTML.  See the documentation for details.
85 *** Additional =:hline= processing to ob-shell
86 If the argument =:hlines yes= is present in a babel call, an optional
87 argument =:hlines-string= can be used to define a string to use as a
88 representation for the lisp symbol ='hline= in the shell program.  The
89 default is =hline=.
90 *** Drawers do not need anymore to be referenced in =#+DRAWERS=
91 One can use a drawer without listing it in the =#+DRAWERS= keyword,
92 which is now obsolete.  As a consequence, this change also deprecates
93 ~org-drawers~ variable.
94 *** Markdown export supports switches in source blocks
95 For example, it is now possible to number lines using the =-n= switch
96 in a source block.
97 *** New blocks in ASCII export
98 ASCII export now supports =#+BEGIN_JUSTIFYRIGHT= and
99 =#+BEGIN_JUSTIFYLEFT= blocks.  See documentation for details.
100 *** More back-end specific publishing options
101 The number of publishing options specific to each back-end has been
102 increased.  See manual for details.
103 ** Miscellaneous
104 *** File names in links accept are now compatible with URI syntax
105 Absolute file names can now start with =///= in addition to =/=. E.g.,
106 =[[file:///home/me/unicorn.jpg]]=.
107 *** Footnotes in included files are now local to the file
108 As a consequence, it is possible to include multiple Org files with
109 footnotes in a master document without being concerned about footnote
110 labels colliding.
111 *** Mailto links now use regular URI syntax
112 This change deprecates old Org syntax for mailto links:
113 =mailto:user@domain::Subject=.
114 *** =QUOTE= keywords do not exist anymore
115 =QUOTE= keywords have been deprecated since Org 8.2.
116 *** Select tests to perform with the build system
117 The build system has been enhanced to allow test selection with a
118 regular expression by defining =BTEST_RE= during the test invocation.
119 This is especially useful during bisection to find just when a
120 particular test failure was introduced.
121 * Version 8.2
123 ** Incompatible changes
124 *** =ob-sh.el= renamed to =ob-shell=
125 This may require two changes in user config.
127 1. In =org-babel-do-load-languages=, change =(sh . t)= to =(shell . t)=.
128 2. Edit =local.mk= files to change the value of =BTEST_OB_LANGUAGES=
129    to remove "sh" and include "shell".
131 *** Combine org-mac-message.el and org-mac-link-grabber into org-mac-link.el
133 Please remove calls to =(require 'org-mac-message)= and =(require
134 'org-mac-link-grabber)= in your =.emacs= initialization file.  All you
135 need now is =(require 'org-mac-link)=.
137 Additionally, replace any calls to =ogml-grab-link= to
138 =org-mac-grab-link=.  For example, replace this line:
140 : (define-key org-mode-map (kbd "C-c g") 'omgl-grab-link)
142 with this:
144 : (define-key org-mode-map (kbd "C-c g") 'org-mac-grab-link)
146 *** HTML export: Replace =HTML_HTML5_FANCY= by =:html-html5-fancy= (...)
148 Some of the HTML specific export options in Org <8.1 are either nil or
149 t, like =#+HTML_INCLUDE_STYLE=.  We replaced these binary options with
150 option keywords like :html-include-style.
152 So you need to replace
154 : #+HTML_INCLUDE_STYLE: t
156 by 
158 : #+OPTIONS: :html-include-style t
160 Options affected by this change: =HTML5_FANCY=, =HTML_INCLUDE_SCRIPTS=
161 and =HTML_INCLUDE_STYLE=.
163 *** Add an argument to ~org-export-to-file~ and ~org-export-to-buffer~
165 ~org-export-to-file~ and ~org-export-to-file~ can run in a different
166 process when provided a non-nil =ASYNC= optional argument, without
167 relying on ~org-export-async-start~ macro.
169 Since =ASYNC= is the first of optional arguments, you have to shift
170 the other optional arguments accordingly.
172 *** Export back-ends are now structures
174 Export back-ends are now structures, and stored as such in the
175 communication channel during an export process.  In other words, from
176 now on, ~(plist-get info :back-end)~ will return a structure instead
177 of a symbol.
179 Arguments in hooks and in filters are still symbols, though.
181 ** Important bugfixes
183 *** [[doc:org-insert-heading][org-insert-heading]] has been rewritten and bugs are now fixed
184 *** The replacement of disputed keys is now turned of when reading a date
186 *** Match string for sparse trees can now contain a slash in a property value
188     You can now have searches like SOMEPROP="aaa/bbb".  Until now,
189     this would break because the slash would be interpreted as the
190     separator starting a TOTO match string.
191 ** New features
193 *** =C-c ^ x= will now sort checklist items by their checked status
195 See [[doc:org-sort-list][org-sort-list]]: hitting =C-c ^ x= will put checked items at the end
196 of the list.
197 *** Various LaTeX export enhancements
199 - Support SVG images
200 - Support for .pgf files
201 - LaTeX Babel blocks can now be exported as =.tikz= files
202 - Allow =latexmk= as an option for [[doc:org-latex-pdf-process][org-latex-pdf-process]]
203 - When using =\usepackage[AUTO]{babel}=, AUTO will automatically be
204   replaced with a value compatible with ~org-export-default-language~
205   or ~LANGUAGE~ keyword.
206 - The dependency on the =latexsym= LaTeX package has been removed, we
207   now use =amssymb= symbols by default instead.
209 *** New functions for paragraph motion
210     
211     The commands =C-down= and =C-up= now invoke special commands
212     that use knowledge from the org-elements parser to move the cursor
213     in a paragraph-like way.
215 *** New entities in =org-entities.el=
216     
217 Add support for ell, imath, jmath, varphi, varpi, aleph, gimel, beth,
218 dalet, cdots, S (ยง), dag, ddag, colon, therefore, because, triangleq,
219 leq, geq, lessgtr, lesseqgtr, ll, lll, gg, ggg, prec, preceq,
220 preccurlyeq, succ, succeq, succurlyeq, setminus, nexist(s), mho,
221 check, frown, diamond.  Changes loz, vert, checkmark, smile and tilde.
223 *** Anonymous export back-ends
225 ~org-export-create-backend~ can create anonymous export back-ends,
226 which can then be passed to export functions like
227 ~org-export-to-file~, ~org-export-to-buffer~ or ~org-export-as~.
229 It allows for quick translation of Org syntax without the overhead of
230 registering a new back-end.
232 *** New agenda fortnight view
234     The agenda has not, in addition to day, week, month, and year
235     views, also a fortnight view covering 14 days.
236 ** New options
238 *** New option [[doc:org-bookmark-names-plist][org-bookmark-names-plist]]
240 This allows to specify the names of automatic bookmarks.
241 *** New option [[doc:org-agenda-ignore-drawer-properties][org-agenda-ignore-drawer-properties]]
243 This allows more flexibility when optimizing the agenda generation.
244 See http://orgmode.org/worg/agenda-optimization.html for details.
245 *** New option: [[doc:org-html-link-use-abs-url][org-html-link-use-abs-url]] to force using absolute URLs
247 This is an export/publishing option, and should be used either within
248 the =#+OPTIONS= line(s) or within a [[doc:org-publish-project-alist][org-publish-project-alist]].
250 Setting this option to =t= is needed when the HTML output does not
251 allow relative URLs.  For example, the =contrib/lisp/ox-rss.el=
252 library produces a RSS feed, and RSS feeds need to use absolute URLs,
253 so a combination of =:html-link-home "..." and :html-link-use-abs-url
254 t= is required---see the configuration example in the comment section
255 of =ox-rss.el=.
257 *** New option [[doc:org-babel-ditaa-java-cmd][org-babel-ditaa-java-cmd]]
259 This makes java executable configurable for ditaa blocks.
261 *** New options [[doc:org-babel-latex-htlatex][org-babel-latex-htlatex]] and [[doc:org-babel-latex-htlatex-packages][org-babel-latex-htlatex-packages]]
263 This enables SVG generation from latex code blocks.
265 *** New option: [[doc:org-habit-show-done-always-green][org-habit-show-done-always-green]]
267 See [[http://lists.gnu.org/archive/html/emacs-orgmode/2013-05/msg00214.html][this message]] from Max Mikhanosha.
269 *** New option: [[doc:org-babel-inline-result-wrap][org-babel-inline-result-wrap]]
271 If you set this to the following
273 : (setq org-babel-inline-result-wrap "$%s$")
275 then inline code snippets will be wrapped into the formatting string.
277 *** New option: [[doc:org-special-ctrl-o][org-special-ctrl-o]]
279     This variable can be used to turn off the special behavior of
280     =C-o= in tables.
281 ** New contributed packages
283 - =ox-bibtex.el= by Nicolas Goaziou :: an utility to handle BibTeX
284      export to both LaTeX and HTML exports.  It uses the [[http://www.lri.fr/~filliatr/bibtex2html/][bibtex2html]]
285      software.
287 - =org-screenshot.el= by Max Mikhanosha :: an utility to handle
288      screenshots easily from Org, using the external tool [[http://freecode.com/projects/scrot][scrot]].
290 ** Miscellaneous
292 *** "QUOTE" keywords in headlines are deprecated
294 "QUOTE" keywords are an undocumented feature in Org.  When a headline
295 starts with the keyword "QUOTE", its contents are parsed as
296 a ~quote-section~ and treated as an example block.  You can achieve
297 the same with example blocks.
299 This feature is deprecated and will be removed in the next Org
300 release.
302 * Version 8.0.1
304 ** Installation
306 Installation instructions have been updated and simplified.
308 If you have troubles installing or updating Org, focus on these
309 instructions:
311 - when updating via a =.zip/.tar.gz= file, you only need to set the
312   =load-path= in your =.emacs=.  Set it before any other Org
313   customization that would call autoloaded Org functions.
315 - when updating by pulling Org's Git repository, make sure to create the
316   correct autoloads.  You can do this by running =~$ make autoloads= (to
317   only create the autoloads) or by running =~$ make= (to also compile
318   the Emacs lisp files.)  =~$ make help= and =~$ make helpall= gives you
319   detailed explanations.
321 - when updating through ELPA (either from GNU ELPA or from Org ELPA),
322   you have to install Org's ELPA package in a session where no Org
323   function has been called already.
324   
325 When in doubt, run =M-x org-version RET= and see if you have a mixed-up
326 installation.
328 See http://orgmode.org/org.html#Installation for details.
330 ** Incompatible changes
332 Org 8.0 is the most disruptive major version of Org.
334 If you configured export options, you will have to update some of them.
336 If you used =#+ATTR_*= keywords, the syntax of the attributes changed and
337 you will have to update them.
339 Below is a list of changes for which you need to take action.
341 See http://orgmode.org/worg/org-8.0.html for the most recent version of
342 this list and for detailed instructions on how to migrate.
344 **** New export engine
346 Org 8.0 comes with a new export engine written by Nicolas Goaziou.  This
347 export engine relies on ~org-element.el~ (Org's syntax parser), which was
348 already in Org's core.  This new export engine triggered the rewriting of
349 /all/ export back-ends.
351 The most visible change is the export dispatcher, accessible through the
352 keybinding =C-c C-e=.  By default, this menu only shows some of the
353 built-in export formats, but you can add more formats by loading them
354 directly (e.g., =(require 'ox-texinfo)= or by configuring the option
355 [[doc:org-export-backends][org-export-backends]].
357 More contributed back-ends are available from the =contrib/= directory, the
358 corresponding files start with the =ox-= prefix.
360 If you customized an export back-end (like HTML or LaTeX), you will need to
361 rename some options so that your customization is not lost.  Typically, an
362 option starting with =org-export-html-= is now named =org-html-=.  See the
363 manual for details and check [[http://orgmode.org/worg/org-8.0.html][this Worg page]] for directions.
365 **** New syntax for #+ATTR_HTML/LaTeX/... options
367      : #+ATTR_HTML width="200px"
369      should now be written
371      : #+ATTR_HTML :width 200px
373      Keywords like =#+ATTR_HTML= and =#+ATTR_LaTeX= are defined in their
374      respective back-ends, and the list of supported parameters depends on
375      each backend.  See Org's manual for details.
377 **** ~org-remember.el~ has been removed
379      You cannot use =remember.el= anymore to capture notes.
381      Support for remember templates has been obsoleted since long, it is
382      now fully removed.
384      Use =M-x org-capture-import-remember-templates RET= to import your
385      remember templates into capture templates.
387 **** ~org-jsinfo.el~ has been merged into ~ox-html.el~
389      If you were requiring ~ox-jsinfo.el~ in your ~.emacs.el~ file, you
390      will have to remove this requirement from your initialization file.
392 **** Note for third-party developers
394      The name of the files for export back-end have changed: we now use the
395      prefix =ox-= for those files (like we use the =ob-= prefix for Babel
396      files.)  For example ~org-html.el~ is now ~ox-html.el~.
398      If your code relies on these files, please update the names in your
399      code.
401 **** Packages moved from core to contrib
403      Since packages in Org's core are meant to be part of GNU Emacs, we try
404      to be minimalist when it comes to adding files into core.  For 8.0, we
405      moved some contributions into the =contrib/= directory.
407      The rationale for deciding that these files should live in =contrib/=
408      is either because they rely on third-party software that is not
409      included in Emacs, or because they are not targeting a significant
410      user-base.
412      - org-colview-xemacs.el
413      - org-mac-message.el
414      - org-mew.el
415      - org-wl.el
416      - ox-freedmind.el
417      - ox-taskjuggler.el
419      Note that ~ox-freedmind.el~ has been rewritten by Jambunathan,
420      ~org-mew.el~ has been enhanced by Tokuya Kameshima and
421      ~ox-taskjuggler.el~ by Nicolas Goaziou and others.
423      Also, the Taskjuggler exporter now uses TJ3 by default.  John Hendy
424      wrote [[http://orgmode.org/worg/org-tutorials/org-taskjuggler3.html][a tutorial on Worg]] for the TJ3 export.
426 ** New packages in core
428 *** ~ob-makefile.el~ by Eric Schulte and Thomas S. Dye
430     =ob-makefile.el= implements Org Babel support for Makefile tangling.
432 *** ~ox-man.el~ by Luis Anaya
434     =ox-man.el= allows you to export Org files to =man= pages.
436 *** ~ox-md.el~ by Nicolas Goaziou
438     =ox-md.el= allows you to export Org files to Markdown files, using the
439     vanilla [[http://daringfireball.net/projects/markdown/][Markdown syntax]].
441 *** ~ox-texinfo.el~ by Jonathan Leech-Pepin
443     =ox-texinfo.el= allows you to export Org files to [[http://www.gnu.org/software/texinfo/][Texinfo]] files.
445 ** New packages in contrib
447 *** ~ob-julia.el~ by G. Jay Kerns
449     [[http://julialang.org/][Julia]] is a new programming language.
451     =ob-julia.el= provides Org Babel support for evaluating Julia source
452     code.
454 *** ~ob-mathomatic.el~ by Luis Anaya
456     [[http://www.mathomatic.org/][mathomatic]] a portable, command-line, educational CAS and calculator
457     software, written entirely in the C programming language.
459     ~ob-mathomatic.el~ provides Org Babel support for evaluating mathomatic
460     entries.
462 *** ~ob-tcl.el~ by Luis Anaya
464     ~ob-tcl.el~ provides Org Babel support for evaluating [[http://www.tcl.tk/][Tcl]] source code.
466 *** ~org-bullets.el~ by Evgeni Sabof
468     Display bullets instead of stars for headlines.
470     Also see [[http://orgmode.org/worg/org-faq.html#sec-8-12][this updated FAQ]] on how to display another character than "*"
471     for starting headlines.
473 *** ~org-favtable.el~ by Marc-Oliver Ihm
475     ~org-favtable.el~ helps you to create and update a table of favorite
476     locations in org, keeping the most frequently visited lines right at
477     the top.  This table is called "favtable".  See the documentation on
478     [[http://orgmode.org/worg/org-contrib/org-favtable.html][Worg]].
480 *** ~ox-confluence.el~ by Sรฉbastien Delafond
482     ~ox-confluence.el~ lets you convert Org files to [[https://confluence.atlassian.com/display/DOC/Confluence%2BWiki%2BMarkup][Confluence Wiki]] files.
484 *** ~ox-deck.el~ and ~ox-s5.el~ by Rick Frankel
486     [[http://imakewebthings.com/deck.js/][deck.js]] is a javascript library for displaying HTML ages as
487     presentations.  ~ox-deck.el~ exports Org files to HTML presentations
488     using =deck.js=.
490     [[http://meyerweb.com/eric/tools/s5/][s5]] is a set of scripts which also allows to display HTML pages as
491     presentations.  ~ox-s5.el~ exports Org files to HTML presentations
492     using =s5=.
494 *** ~ox-groff.el~ by Luis Anaya and Nicolas Goaziou
496     The [[http://www.gnu.org/software/groff/][groff]] (GNU troff) software is a typesetting package which reads
497     plain text mixed with formatting commands and produces formatted
498     output.
500     Luis Anaya and Nicolas Goaziou implemented ~ox-groff.el~ to allow
501     conversion from Org files to groff.
503 *** ~ox-koma-letter.el~ by Nicolas Goaziou and Alan Schmitt
505     This back-end allow to export Org pages to the =KOMA Scrlttr2= format.
507 *** ~ox-rss.el~ by Bastien
509     This back-end lets you export Org pages to RSS 2.0 feeds.  Combined
510     with the HTML publishing feature, this allows you to build a blog
511     entirely with Org.
513 ** New features
515 *** Export
517 **** New export generic options
519 If you use Org exporter, we advise you to re-read [[http://orgmode.org/org.html#Exporting][the manual section about
520 it]].  It has been updated and includes new options.
522 Among the new/updated export options, three are of particular importance:
524 - [[doc:org-export-allow-bind-keywords][org-export-allow-bind-keywords]] :: This option replaces the old option
525      =org-export-allow-BIND= and the default value is =nil=, not =confirm=.
526      You will need to explicitly set this to =t= in your initialization
527      file if you want to allow =#+BIND= keywords.
529 - [[doc:org-export-with-planning][org-export-with-planning]] :: This new option controls the export of
530      =SCHEDULED:, DEADLINE:, CLOSED:= lines, and planning information is
531      now skipped by default during export.  This use to be the job of
532      [[doc:org-export-with-timestamps][org-export-with-timestamps]], but this latter option has been given a
533      new role: it controls the export of /standalone time-stamps/.  When
534      set to =nil=, Org will not export active and inactive time-stamps
535      standing on a line by themselves or within a paragraph that only
536      contains time-stamps.
538 To check if an option has been introduced or its default value changed in
539 Org 8.0, do =C-h v [option] RET= and check if the documentation says that
540 the variable has been introduced (or changed) in version 24.4 of Emacs.
542 **** Enhanced default stylesheet for the HTML exporter
544 See the new default value of [[doc:org-html-style-default][org-html-style-default]].
546 **** New tags, classes and ids for the HTML exporter
548 See the new default value of [[doc:org-html-divs][org-html-divs]].
550 **** Support for tikz pictures in LaTeX export
551 **** ~org-man.el~: New export function for "man" links
552 **** ~org-docview.el~: New export function for docview links
553 *** Structure editing
555 **** =C-u C-u M-RET= inserts a heading at the end of the parent subtree
556 **** Cycling to the =CONTENTS= view keeps inline tasks folded
558 [[doc:org-cycle-hook][org-cycle-hook]] as a new function [[doc:org-cycle-hide-inline-tasks][org-cycle-hide-inline-tasks]] which
559 prevents the display of inline tasks when showing the content of a subtree.
561 **** =C-c -= in a region makes a list item for each line
563 This is the opposite of the previous behavior, where =C-c -= on a region
564 would create one item for the whole region, and where =C-u C-c -= would
565 create an item for each line.  Now =C-c -= on the selected region creates
566 an item per line, and =C-u C-c -= creates a single item for the whole
567 region.
569 **** When transposing words, markup characters are now part of the words
571 In Emacs, you can transpose words with =M-t=.  Transposing =*these*
572 _words__= will preserve markup.
574 **** New command [[doc:org-set-property-and-value][org-set-property-and-value]] bound to =C-c C-x P=
576 This command allows you to quickly add both the property and its value.  It
577 is useful in buffers where there are many properties and where =C-c C-x p=
578 can slow down the flow of editing too much.
580 **** New commands [[doc:org-next-block][org-next-block]] and [[doc:org-previous-block][org-previous-block]]
582 These commands allow you to go to the previous block (=C-c M-b= or the
583 speedy key =B=) or to the next block (=C-c M-f= or the speedy key =F=.)
585 **** New commands [[doc:org-drag-line-forward][org-drag-line-forward]] and [[doc:org-drag-line-backward][org-drag-line-backward]]
587 These commands emulate the old behavior of =M-<down>= and =M-<up>= but are
588 now bound to =S-M-<down>= and =S-M-<up>= respectively, since =M-<down>= and
589 =M-<up>= now drag the whole element at point (a paragraph, a table, etc.)
590 forward and backward.
592 **** When a list item has a checkbox, inserting a new item uses a checkbox too
593 **** When sorting entries/items, only the description of links is considered
595 Now Org will sort this list
597 : - [[http://abc.org][B]]
598 : - [[http://def.org][A]]
600 like this:
602 : - [[http://def.org][A]]
603 : - [[http://abc.org][B]]
605 by comparing the descriptions, not the links.
606 Same when sorting headlines instead of list items.
607 **** New option =orgstruct-heading-prefix-regexp=
609 For example, setting this option to "^;;; " in Emacs lisp files and using
610 =orgstruct-mode= in those files will allow you to cycle through visibility
611 states as if lines starting with ";;; *..." where headlines.
613 In general, you want to set =orgstruct-heading-prefix-regexp= as a file
614 local variable.
616 **** New behavior of [[doc:org-clone-subtree-with-time-shift][org-clone-subtree-with-time-shift]]
618 The default is now to ask for a time-shift only when there is a time-stamp.
619 When called with a universal prefix argument =C-u=, it will not ask for a
620 time-shift even if there is a time-stamp.
622 **** New option [[doc:org-agenda-restriction-lock-highlight-subtree][org-agenda-restriction-lock-highlight-subtree]]
624 This defaults to =t= so that the whole subtree is highlighted when you
625 restrict the agenda view to it with =C-c C-x <= (or the speed command =<=).
626 The default setting helps ensuring that you are not adding tasks after the
627 restricted region.  If you find this highlighting too intrusive, set this
628 option to =nil=.
629 **** New option [[doc:org-closed-keep-when-no-todo][org-closed-keep-when-no-todo]]
631 When switching back from a =DONE= keyword to a =TODO= keyword, Org now
632 removes the =CLOSED= planning information, if any.  It also removes this
633 information when going back to a non-TODO state (e.g., with =C-c C-t SPC=).
634 If you want to keep the =CLOSED= planning information when removing the
635 TODO keyword, set [[doc:org-closed-keep-when-no-todo][org-closed-keep-when-no-todo]] to =t=.
637 **** New option [[doc:org-image-actual-width][org-image-actual-width]]
639 This option allows you to change the width of in-buffer displayed images.
640 The default is to use the actual width of the image, but you can use a
641 fixed value for all images, or fall back on an attribute like
643 : #+attr_html: :width 300px
644 *** Scheduled/deadline
646 **** Implement "delay" cookies for scheduled items
648 If you want to delay the display of a scheduled task in the agenda, you can
649 now use a delay cookie like this: =SCHEDULED: <2004-12-25 Sat -2d>=.  The
650 task is still scheduled on the 25th but will appear in your agenda starting
651 from two days later (i.e. from March 27th.)
653 Imagine for example that your co-workers are not done in due time and tell
654 you "we need two more days".  In that case, you may want to delay the
655 display of the task in your agenda by two days, but you still want the task
656 to appear as scheduled on March 25th.
658 In case the task contains a repeater, the delay is considered to affect all
659 occurrences; if you want the delay to only affect the first scheduled
660 occurrence of the task, use =--2d= instead.  See [[doc:org-scheduled-delay-days][org-scheduled-delay-days]]
661 and [[doc:org-agenda-skip-scheduled-delay-if-deadline][org-agenda-skip-scheduled-delay-if-deadline]] for details on how to
662 control this globally or per agenda.
664 **** Use =C-u C-u C-c C-s= will insert a delay cookie for scheduled tasks
666 See the previous section for why delay cookies may be useful.
668 **** Use =C-u C-u C-c C-d= will insert a warning delay for deadline tasks
670 =C-u C-u C-c C-d= now inserts a warning delay to deadlines.
671 *** Calendar, diary and appts
673 **** New variable [[doc:org-read-date-minibuffer-local-map][org-read-date-minibuffer-local-map]]
675 By default, this new local map uses "." to go to today's date, like in the
676 normal =M-x calendar RET=.  If you want to deactivate this and to reassign
677 the "@" key to =calendar-goto-today=, use this:
679 #+BEGIN_SRC emacs-lisp
680   ;; Unbind "." in Org's calendar:
681   (define-key org-read-date-minibuffer-local-map (kbd ".") nil)
683   ;; Bind "@" to `calendar-goto-today':
684   (define-key org-read-date-minibuffer-local-map
685               (kbd "@")
686               (lambda () (interactive) (org-eval-in-calendar '(calendar-goto-today))))
687 #+END_SRC
689 **** In Org's calendar, =!= displays diary entries of the date at point
691 This is useful when you want to check if you don't already have an
692 appointment when setting new ones with =C-c .= or =C-c s=.  =!= will
693 call =diary-view-entries= and display the diary in a separate buffer.
695 **** [[doc:org-diary][org-diary]]: only keep the descriptions of links
697 [[doc:org-diary][org-diary]] returns diary information from Org files, but it returns it
698 in a diary buffer, not in an Org mode buffer.  When links are displayed,
699 only show their description, not the full links.
700 *** Agenda
702 **** New agenda type =agenda*= and entry types =:scheduled* :deadline*=
704 When defining agenda custom commands, you can now use =agenda*=: this will
705 list entries that have both a date and a time.  This is useful when you
706 want to build a list of appointments.
708 You can also set [[doc:org-agenda-entry-types][org-agenda-entry-types]] either globally or locally in
709 each agenda custom command and use =:timestamp*= and/or =:deadline*= there.
711 Another place where this is useful is your =.diary= file:
713 : %%(org-diary :scheduled*) ~/org/rdv.org
715 This will list only entries from =~/org/rdv.org= that are scheduled with a
716 time value (i.e. appointments).
718 **** New agenda sorting strategies
720 [[doc:org-agenda-sorting-strategy][org-agenda-sorting-strategy]] allows these new sorting strategies:
722 | Strategy       | Explanations                             |
723 |----------------+------------------------------------------|
724 | timestamp-up   | Sort by any timestamp, early first       |
725 | timestamp-down | Sort by any timestamp, late first        |
726 | scheduled-up   | Sort by scheduled timestamp, early first |
727 | scheduled-down | Sort by scheduled timestamp, late first  |
728 | deadline-up    | Sort by deadline timestamp, early first  |
729 | deadline-down  | Sort by deadline timestamp, late first   |
730 | ts-up          | Sort by active timestamp, early first    |
731 | ts-down        | Sort by active timestamp, late first     |
732 | tsia-up        | Sort by inactive timestamp, early first  |
733 | tsia-down      | Sort by inactive timestamp, late first   |
735 **** New options to limit the number of agenda entries
737 You can now limit the number of entries in an agenda view.  This is
738 different from filters: filters only /hide/ the entries in the agenda,
739 while limits are set while generating the list of agenda entries.
741 These new options are available:
743 - [[doc:org-agenda-max-entries][org-agenda-max-entries]] :: limit by number of entries.
744 - [[doc:org-agenda-max-todos][org-agenda-max-todos]] :: limit by number of TODOs.
745 - [[doc:org-agenda-max-tags][org-agenda-max-tags]] :: limit by number of tagged entries.
746 - [[doc:org-agenda-max-effort][org-agenda-max-effort]] :: limit by effort (minutes).
748 For example, if you locally set [[doc:org-agenda-max-todos][org-agenda-max-todos]] to 3 in an agenda
749 view, the agenda will be limited to the first three todos.  Other entries
750 without a TODO keyword or beyond the third TODO headline will be ignored.
752 When setting a limit (e.g. about an effort's sum), the default behavior is
753 to exclude entries that cannot be checked against (e.g. entries that have
754 no effort property.)  To include other entries too, you can set the limit
755 to a negative number.  For example =(setq org-agenda-max-tags -3)= will not
756 show the fourth tagged headline (and beyond), but it will also show
757 non-tagged headlines.
759 **** =~= in agenda view sets temporary limits
761 You can hit =~= in the agenda to temporarily set limits: this will
762 regenerate the agenda as if the limits were set.  This is useful for
763 example when you want to only see a list of =N= tasks, or a list of tasks
764 that take only =N= minutes.
766 **** "=" in agenda view filters by regular expressions
768 You can now filter agenda entries by regular expressions using ~=~.  =C-u
769 == will filter entries out.  Regexp filters are cumulative.  You can set
770 [[doc:org-agenda-regexp-filter-preset][org-agenda-regexp-filter-preset]] to suit your needs in each agenda view.
772 **** =|= in agenda view resets all filters
774 Since it's common to combine tag filters, category filters, and now regexp
775 filters, there is a new command =|= to reset all filters at once.
777 **** Allow writing an agenda to an =.org= file
779 You can now write an agenda view to an =.org= file.  It copies the
780 headlines and their content (but not subheadings) into the new file.
782 This is useful when you want to quickly share an agenda containing the full
783 list of notes.
785 **** New commands to drag an agenda line forward (=M-<down>=) or backward (=M-<up>=)
787 It sometimes handy to move agenda lines around, just to quickly reorganize
788 your tasks, or maybe before saving the agenda to a file.  Now you can use
789 =M-<down>= and =M-<up>= to move the line forward or backward.
791 This does not persist after a refresh of the agenda, and this does not
792 change the =.org= files who contribute to the agenda.
794 **** Use =%b= for displaying "breadcrumbs" in the agenda view
796 [[doc:org-agenda-prefix-format][org-agenda-prefix-format]] now allows to use a =%b= formatter to tell Org
797 to display "breadcrumbs" in the agenda view.
799 This is useful when you want to display the task hierarchy in your agenda.
801 **** Use =%l= for displaying the headline's level in the agenda view
803 [[doc:org-agenda-prefix-format][org-agenda-prefix-format]] allows to use a =%l= formatter to tell Org to
804 display entries with additional spaces corresponding to their level in the
805 outline tree.
807 **** [[doc:org-agenda-write][org-agenda-write]] will ask before overwriting an existing file
809 =M-x org-agenda-write RET= (or =C-c C-w= from an agenda buffer) used to
810 overwrite preexisting file with the same name without confirmation.  It now
811 asks for a confirmation.
813 **** New commands =M-m= and =M-*= to toggle (all) mark(s) for bulk action
815 - [[doc:org-agenda-bulk-toggle][org-agenda-bulk-toggle]] :: this command is bound to =M-m= and toggles
816      the mark of the entry at point.
818 - [[doc:org-agenda-bulk-toggle-all][org-agenda-bulk-toggle-all]] :: this command is bound to =M-*= and
819      toggles all the marks in the current agenda.
821 **** New option [[doc:org-agenda-search-view-max-outline-level][org-agenda-search-view-max-outline-level]]
823 This option sets the maximum outline level to display in search view.
824 E.g. when this is set to 1, the search view will only show headlines of
825 level 1.
827 **** New option [[doc:org-agenda-todo-ignore-time-comparison-use-seconds][org-agenda-todo-ignore-time-comparison-use-seconds]]
829 This allows to compare times using seconds instead of days when honoring
830 options like =org-agenda-todo-ignore-*= in the agenda display.
832 **** New option [[doc:org-agenda-entry-text-leaders][org-agenda-entry-text-leaders]]
834 This allows you to get rid of the ">" character that gets added in front of
835 entries excerpts when hitting =E= in the agenda view.
837 **** New formatting string for past deadlines in [[doc:org-agenda-deadline-leaders][org-agenda-deadline-leaders]]
839 The default formatting for past deadlines is ="%2d d. ago: "=, which makes
840 it explicit that the deadline is in the past.  You can configure this via
841 [[doc:org-agenda-deadline-leaders][org-agenda-deadline-leaders]].  Note that the width of the formatting
842 string is important to keep the agenda alignment clean.
844 **** New allowed value =repeated-after-deadline= for [[doc:org-agenda-skip-scheduled-if-deadline-is-shown][org-agenda-skip-scheduled-if-deadline-is-shown]]
846 When [[doc:org-agenda-skip-scheduled-if-deadline-is-shown][org-agenda-skip-scheduled-if-deadline-is-shown]] is set to
847 =repeated-after-deadline=, the agenda will skip scheduled items if they are
848 repeated beyond the current deadline.
850 **** New option for [[doc:org-agenda-skip-deadline-prewarning-if-scheduled][org-agenda-skip-deadline-prewarning-if-scheduled]]
852 This variable may be set to nil, t, the symbol `pre-scheduled', or a number
853 which will then give the number of days before the actual deadline when the
854 prewarnings should resume.  The symbol `pre-scheduled' eliminates the
855 deadline prewarning only prior to the scheduled date.
857 Read the full docstring for details.
859 **** [[doc:org-class][org-class]] now supports holiday strings in the skip-weeks parameter
861 For example, this task will now be skipped only on new year's day:
863     : * Task
864     :   <%%(org-class 2012 1 1 2013 12 12 2 "New Year's Day")>
865 *** Capture
867 **** Allow =C-1= as a prefix for [[doc:org-agenda-capture][org-agenda-capture]] and [[doc:org-capture][org-capture]]
869 With a =C-1= prefix, the capture mechanism will use the =HH:MM= value at
870 point (if any) or the current =HH:MM= time as the default time for the
871 capture template.
873 **** Expand keywords within %(sexp) placeholder in capture templates
875 If you use a =%:keyword= construct within a =%(sexp)= construct, Org will
876 expand the keywords before expanding the =%(sexp)=.
878 **** Allow to contextualize capture (and agenda) commands by checking the name of the buffer
880 [[doc:org-capture-templates-contexts][org-capture-templates-contexts]] and [[doc:org-agenda-custom-commands-contexts][org-agenda-custom-commands-contexts]]
881 allow you to define what capture templates and what agenda commands should
882 be available in various contexts.  It is now possible for the context to
883 check against the name of the buffer.
884 *** Tag groups
886 Using =#+TAGS: { Tag1 : Tag2 Tag3 }= will define =Tag1= as a /group tag/
887 (note the colon after =Tag1=).  If you search for =Tag1=, it will return
888 headlines containing either =Tag1=, =Tag2= or =Tag3= (or any combination
889 of those tags.)
891 You can use group tags for sparse tree in an Org buffer, for creating
892 agenda views, and for filtering.
894 See http://orgmode.org/org.html#Tag-groups for details.
896 *** Links
898 **** =C-u C-u M-x org-store-link RET= will ignore non-core link functions
900 Org knows how to store links from Org buffers, from info files and from
901 other Emacs buffers.  Org can be taught how to store links from any buffer
902 through new link protocols (see [[http://orgmode.org/org.html#Adding-hyperlink-types]["Adding hyperlink types"]] in the manual.)
904 Sometimes you want Org to ignore added link protocols and store the link
905 as if the protocol was not known.
907 You can now do this with =C-u C-u M-x org-store-link RET=.
909 **** =C-u C-u C-u M-x org-store-link RET= on an active region will store links for each lines
911 Imagine for example that you want to store a link for every message in a
912 Gnus summary buffer.  In that case =C-x h C-u C-u C-u M-x org-store-link
913 RET= will store a link for every line (i.e. message) if the region is
914 active.
916 **** =C-c C-M-l= will add a default description for links which don't have one
918 =C-c C-M-l= inserts all stored links.  If a link does not have a
919 description, this command now adds a default one, so that we are not mixing
920 with-description and without-description links when inserting them.
922 **** No curly braces to bracket links within internal links
924 When storing a link to a headline like
926 : * See [[http://orgmode.org][Org website]]
928 [[doc:org-store-link][org-store-link]] used to convert the square brackets into curly brackets.
929 It does not anymore, taking the link description or the link path, when
930 there is no description.
931 *** Table
933 **** Switching between #+TBLFM lines
935 If you have several =#+TBLFM= lines below a table, =C-c C-c= on a line will
936 apply the formulas from this line, and =C-c C-c= on another line will apply
937 those other formulas.
939 **** You now use "nan" for empty fields in Calc formulas
941 If empty fields are of interest, it is recommended to reread the section
942 [[http://orgmode.org/org.html#Formula-syntax-for-Calc][3.5.2 Formula syntax for Calc]] of the manual because the description for the
943 mode strings has been clarified and new examples have been added towards
944 the end.
946 **** Handle localized time-stamps in formulas evaluation
948 If your =LOCALE= is set so that Org time-stamps use another language than
949 english, and if you make time computations in Org's table, it now works by
950 internally converting the time-stamps with a temporary =LOCALE=C= before
951 doing computation.
953 **** New lookup functions
955 There are now three lookup functions:
957 - [[doc:org-loopup-first][org-loopup-first]]
958 - [[doc:org-loopup-last][org-loopup-last]]
959 - [[doc:org-loopup-all][org-loopup-all]]
961 See [[http://orgmode.org/org.html#Lookup-functions][the manual]] for details.
962 *** Startup keywords
964 These new startup keywords are now available:
966 | Startup keyword                  | Option                                      |
967 |----------------------------------+---------------------------------------------|
968 | =#+STARTUP: logdrawer=           | =(setq org-log-into-drawer t)=              |
969 | =#+STARTUP: nologdrawer=         | =(setq org-log-into-drawer nil)=            |
970 |----------------------------------+---------------------------------------------|
971 | =#+STARTUP: logstatesreversed=   | =(setq org-log-states-order-reversed t)=    |
972 | =#+STARTUP: nologstatesreversed= | =(setq org-log-states-order-reversed nil)=  |
973 |----------------------------------+---------------------------------------------|
974 | =#+STARTUP: latexpreview=        | =(setq org-startup-with-latex-preview t)=   |
975 | =#+STARTUP: nolatexpreview=      | =(setq org-startup-with-latex-preview nil)= |
977 *** Clocking
979 **** New option [[doc:org-clock-rounding-minutes][org-clock-rounding-minutes]]
981 E.g. if [[doc:org-clock-rounding-minutes][org-clock-rounding-minutes]] is set to 5, time is 14:47 and you
982 clock in: then the clock starts at 14:45.  If you clock out within the next
983 5 minutes, the clock line will be removed; if you clock out 8 minutes after
984 your clocked in, the clock out time will be 14:50.
986 **** New option [[doc:org-time-clocksum-use-effort-durations][org-time-clocksum-use-effort-durations]]
988 When non-nil, =C-c C-x C-d= uses effort durations.  E.g., by default, one
989 day is considered to be a 8 hours effort, so a task that has been clocked
990 for 16 hours will be displayed as during 2 days in the clock display or in
991 the clocktable.
993 See [[doc:org-effort-durations][org-effort-durations]] on how to set effort durations and
994 [[doc:org-time-clocksum-format][org-time-clocksum-format]] for more on time clock formats.
996 **** New option [[doc:org-clock-x11idle-program-name][org-clock-x11idle-program-name]]
998 This allows to set the name of the program which prints X11 idle time in
999 milliseconds.  The default is to use =x11idle=.
1001 **** New option [[doc:org-use-last-clock-out-time-as-effective-time][org-use-last-clock-out-time-as-effective-time]]
1003 When non-nil, use the last clock out time for [[doc:org-todo][org-todo]].  Note that this
1004 option has precedence over the combined use of [[doc:org-use-effective-time][org-use-effective-time]] and
1005 [[doc:org-extend-today-until][org-extend-today-until]].
1007 **** =S-<left/right>= on a clocksum column will update the sum by updating the last clock
1008 **** =C-u 3 C-S-<up/down>= will update clock timestamps synchronously by 3 units
1009 **** New parameter =:wstart= for clocktables to define the week start day
1010 **** New parameter =:mstart= to state the starting day of the month
1011 **** Allow relative times in clocktable tstart and tend options
1012 **** The clocktable summary is now a caption
1013 **** =:tstart= and =:tend= and friends allow relative times like "<-1w>" or "<now>"
1014 *** Babel
1016 **** You can now use =C-c C-k= for [[doc:org-edit-src-abort][org-edit-src-abort]]
1018 This allows you to quickly cancel editing a source block.
1020 **** =C-u C-u M-x org-babel-tangle RET= tangles by the target file of the block at point
1022 This is handy if you want to tangle all source code blocks that have the
1023 same target than the block at point.
1025 **** New options for auto-saving the base buffer or the source block editing buffer
1027 When [[doc:org-edit-src-turn-on-auto-save][org-edit-src-turn-on-auto-save]] is set to =t=, editing a source block
1028 in a new window will turn on =auto-save-mode= and save the code in a new
1029 file under the same directory than the base Org file.
1031 When [[doc:org-edit-src-auto-save-idle-delay][org-edit-src-auto-save-idle-delay]] is set to a number of minutes =N=,
1032 the base Org buffer will be saved after this number of minutes of idle
1033 time.
1035 **** New =:post= header argument post-processes results
1037      This header argument may be used to pass the results of the current
1038      code block through another code block for post-processing.  See the
1039      manual for a usage example.
1041 **** Commented out heading are ignored when collecting blocks for tangling
1043 If you comment out a heading (with =C-c ;= anywhere on the heading or in
1044 the subtree), code blocks from within this heading are now ignored when
1045 collecting blocks for tangling.
1047 **** New option [[doc:org-babel-hash-show-time][org-babel-hash-show-time]] to show a time-stamp in the result hash
1048 **** Do not ask for confirmation if cached value is current
1050 Do not run [[doc:org-babel-confirm-evaluate][org-babel-confirm-evaluate]] if source block has a cache and the
1051 cache value is current as there is no evaluation involved in this case.
1052 **** =ob-sql.el= and =ob-python.el= have been improved.
1053 **** New Babel files only need to =(require 'ob)=
1055 When writing a new Babel file, you now only need to use =(require 'ob)=
1056 instead of requiring each Babel library one by one.
1057 *** Faces
1059 - Org now fontifies radio link targets by default
1060 - In the agenda, use [[doc:org-todo-keyword-faces][org-todo-keyword-faces]] to highlight selected TODO keywords
1061 - New face [[doc:org-priority][org-priority]], enhanced fontification of priority cookies in agenda
1062 - New face [[doc:org-tag-group][org-tag-group]] for group tags
1064 ** Miscellaneous
1066 - New speedy key =s= pour [[doc:org-narrow-to-subtree][org-narrow-to-subtree]]
1067 - Handling of [[doc:org-html-table-row][org-html-table-row]] has been updated (incompatible change)
1068 - [[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]]
1069 - Support using =git-annex= with Org attachments
1070 - org-protocol: Pass optional value using query in url to capture from protocol
1071 - When the refile history is empty, use the current filename as default
1072 - When you cannot change the TODO state of a task, Org displays the blocking task
1073 - New option [[doc:org-mobile-allpriorities][org-mobile-allpriorities]]
1074 - org-bibtex.el now use =visual-line-mode= instead of the deprecated =longlines-mode=
1075 - [[doc:org-format-latex-options][org-format-latex-options]] allows to set the foreground/background colors automatically
1076 - New option [[doc:org-archive-file-header-format][org-archive-file-header-format]]
1077 - New "neg" entity in [[doc:org-entities][org-entities]]
1078 - New function [[doc:org-docview-export][org-docview-export]] to export docview links
1079 - New =:eps= header argument for ditaa code blocks
1080 - New option [[doc:org-gnus-no-server][org-gnus-no-server]] to start Gnus with =gnus-no-server=
1081 - Org is now distributed with =htmlize.el= version 1.43
1082 - ~org-drill.el~ has been updated to version 2.3.7
1083 - ~org-mac-iCal.el~ now supports MacOSX version up to 10.8
1084 - Various improvements to ~org-contacts.el~ and =orgpan.el=
1086 ** Outside Org
1088 *** Spanish translation of the Org guide by David Arroyo Menรฉndez
1090 David (and others) translated the Org compact guide in spanish:
1092 You can read the [[http://orgmode.org/worg/orgguide/orgguide.es.pdf][PDF guide]].
1094 *** ~poporg.el~ and ~outorg.el~
1096 Two new libraries (~poporg.el~ by Franรงois Pinard and ~outorg.el~ by
1097 Thorsten Jolitz) now enable editing of comment-sections from source-code
1098 buffers in temporary Org-mode buffers, making the full editing power of
1099 Org-mode available.  ~outorg.el~ comes together with ~outshine.el~ and
1100 ~navi-mode.el~, two more libraries by Thorsten Jolitz with the goal to give
1101 source-code buffers the /look & feel/ of Org-mode buffers while greatly
1102 improving navigation and structure editing.  A detailed description can be
1103 found here: http://orgmode.org/worg/org-tutorials/org-outside-org.html
1105 Here are two screencasts demonstrating Thorsten's tools:
1107 - [[http://youtu.be/nqE6YxlY0rw]["Modern conventions for Emacs Lisp files"]]
1108 - [[http://www.youtube.com/watch?v%3DII-xYw5VGFM][Exploring Bernt Hansen's Org-mode tutorial with 'navi-mode']]
1110 *** MobileOrg for iOS
1112 MobileOrg for iOS back in the App Store The 1.6.0 release was focused on
1113 the new Dropbox API and minor bug fixes but also includes a new ability to
1114 launch in Capture mode.  Track development and contribute [[https://github.com/MobileOrg/mobileorg/issues][on github]].
1116 * Version 7.9.3
1118 ** New option [[doc::org-agenda-use-tag-inheritance][org-agenda-use-tag-inheritance]]
1120 [[doc::org-use-tag-inheritance][org-use-tag-inheritance]] controls whether tags are inherited when
1121 org-tags-view is called (either in =tags=, =tags-tree= or =tags-todo=
1122 agenda views.)
1124 When generating other agenda types such as =agenda=, =todo= and
1125 =todo-tree=, tags inheritance is not used when selecting the entries
1126 to display.  Still, you might want to have all tag information correct
1127 in the agenda buffer, e.g. for tag filtering.  In that case, add the
1128 agenda type to this variable.
1130 Setting this variable to nil should considerably speeds up the agenda
1131 generation.
1133 Note that the default was to display inherited tags in the agenda
1134 lines even if `org-use-tag-inheritance' was nil.  The default is now
1135 to *never* display inherited tags in agenda lines, but to /know/ about
1136 them when the agenda type is listed in [[doc::org-agenda-use-tag-inheritance][org-agenda-use-tag-inheritance]].
1138 ** New default value nil for [[doc::org-agenda-dim-blocked-tasks][org-agenda-dim-blocked-tasks]]
1140 Using `nil' as the default value speeds up the agenda generation.  You
1141 can hit `#' (or `C-u #') in agenda buffers to temporarily dim (or turn
1142 invisible) blocked tasks.
1144 ** New speedy keys for [[doc::org-speed-commands-default][org-speed-commands-default]]
1146 You can now use `:' (instead of `;') for setting tags---this is
1147 consistent with using the `:' key in agenda view.
1149 You can now use `=' for [[doc::org-columns][org-columns]].
1151 ** =org-float= is now obsolete, use =diary-float= instead
1152 ** No GPL manual anymore
1154 There used to be a GPL version of the Org manual, but this is not the
1155 case anymore, the Free Software Foundation does not permit this.
1157 The GNU FDL license is now included in the manual directly.
1159 ** Enhanced compatibility with Emacs 22 and XEmacs
1161 Thanks to Achim for his work on enhancing Org's compatibility with
1162 various Emacsen.  Things may not be perfect, but Org should work okay
1163 in most environments.
1165 * Version 7.9.2
1167 ** New ELPA repository for Org packages
1169 You can now add the Org ELPA repository like this:
1171 #+BEGIN_SRC emacs-lisp
1172 (add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t)
1173 #+END_SRC
1175 It contains both the =org-*.tar= package (the core Org distribution, also
1176 available through http://elpa.gnu.org) and the =org-plus*.tar= package (the
1177 extended Org distribution, with non-GNU packages from the =contrib/=
1178 directory.)
1180 See http://orgmode.org/elpa/
1182 ** Overview of the new keybindings
1184    | Keybinding      | Speedy | Command                     |
1185    |-----------------+--------+-----------------------------|
1186    | =C-c C-x C-z=   |        | [[doc::org-clock-resolve][org-clock-resolve]]           |
1187    | =C-c C-x C-q=   |        | [[doc::org-clock-cancel][org-clock-cancel]]            |
1188    | =C-c C-x C-x=   |        | [[doc::org-clock-in-last][org-clock-in-last]]           |
1189    | =M-h=           |        | [[doc::org-mark-element][org-mark-element]]            |
1190    | =*=             |        | [[doc::org-agenda-bulk-mark-all][org-agenda-bulk-mark-all]]    |
1191    | =C-c C-M-l=     |        | [[doc::org-insert-all-links][org-insert-all-links]]        |
1192    | =C-c C-x C-M-v= |        | [[doc::org-redisplay-inline-images][org-redisplay-inline-images]] |
1193    | =C-c C-x E=     | =E=    | [[doc::org-inc-effort][org-inc-effort]]              |
1194    |                 | =#=    | [[doc::org-toggle-comment][org-toggle-comment]]          |
1195    |                 | =:=    | [[doc::org-columns][org-columns]]                 |
1196    |                 | =W=    | Set =APPT_WARNTIME=         |
1197    | =k=             |        | [[doc::org-agenda-capture][org-agenda-capture]]          |
1198    | C-c ,           | ,      | [[doc::org-priority][org-priority]]                |
1200 ** New package and Babel language
1202 *** =org-eshell.el= by Konrad Hinsen is now in Org
1204     =org-eshell.el= allows you to create links from [[http://www.gnu.org/software/emacs/manual/html_node/eshell/index.html][Eshell]].
1206 *** Support for execution of Scala code blocks (see ob-scala.el)
1207 *** Support for execution of IO code blocks (see ob-io.el)
1209 ** Incompatible changes
1211    - If your code relies on =org-write-agenda=, please use
1212      [[doc::org-agenda-write][org-agenda-write]] from now on.
1214    - If your code relies on =org-make-link=, please use =concat=
1215      instead.
1217    - =org-link-to-org-use-id= has been renamed to
1218      =org-id-link-to-org-use-id= and its default value is nil.  The
1219      previous default was =create-if-interactive-and-no-custom-id=.
1221 ** New features and user-visible changes
1223 *** Org Element
1225     =org-element.el= is a toolbox for parsing and analyzing "elements"
1226     in an Org-mode buffer.  This has been written by Nicolas Goaziou
1227     and has been tested for quite some time.  It is now part of Org's
1228     core and many core functions rely on this package.
1230     Two functions might be particularly handy for users:
1231     =org-element-at-point= and =org-element-context=.
1233     See the docstrings for more details.
1235     Below is a list of editing and navigating commands that now rely
1236     on =org-element.el=.
1238 **** [[doc::org-fill-paragraph][org-fill-paragraph]] has been completely rewritten
1240      The filling mechanisms now rely on org-element, trying to do the
1241      right thing on each element in various contexts.  E.g. filling in
1242      a list item will preserve indentation; filling in message-mode
1243      will fall back on the relevant filling functions; etc.
1245 **** [[doc::org-metaup][org-metaup]] and [[doc::org-metadown][org-metadown]] will drag the element backward/forward
1247      If you want to get the old behavior (i.e. moving a line up and
1248      down), you can first select the line as an active region, then
1249      =org-metaup= or =org-metadown= to move the region backward or
1250      forward.  This also works with regions bigger than just one line.
1252 **** [[doc::org-up-element][org-up-element]] and [[doc::org-down-element][org-down-element]] (respectively =C-c C-^= and =C-c C-_=)
1254      This will move the point up/down in the hierarchy of elements.
1256 **** [[doc::org-backward-element][org-backward-element]] and [[doc::org-forward-element][org-forward-element]] (respectively =M-{= and =M-}=)
1258      This will move the point backward/forward in the hierarchy of
1259      elements.
1261 **** [[doc::org-narrow-to-element][org-narrow-to-element]] will narrow to the element at point
1262 **** [[doc::org-mark-element][org-mark-element]] will mark the element at point
1264      This command is bound to =M-h= and will mark the element at
1265      point.  If the point is at a paragraph, it will mark the
1266      paragraph.  If the point is at a list item, it will mark the list
1267      item.  Etc.
1269      Note that if point is at the beginning of a list, it will mark
1270      the whole list.
1272      To mark a subtree, you can either use =M-h= on the headline
1273      (since there is no ambiguity about the element you're at) or
1274      [[doc::org-mark-subtree][org-mark-subtree]] (=C-c @=) anywhere in the subtree.
1276      Invoking [[doc::org-mark-element][org-mark-element]] repeatedly will try to mark the next
1277      element on top of the previous one(s).  E.g. hitting =M-h= twice
1278      on a headline will mark the current subtree and the next one on
1279      the same level.
1281 *** Org Agenda
1283 **** New option [[doc::org-agenda-sticky][org-agenda-sticky]]
1285      There is a new option =org-agenda-sticky= which enables "sticky"
1286      agendas.  Sticky agendas remain opened in the background so that
1287      you don't need to regenerate them each time you hit the
1288      corresponding keystroke.  This is a big time saver.
1290      When [[doc::org-agenda-sticky][org-agenda-sticky]] is =non-nil=, the agenda buffer will be
1291      named using the agenda key and its description.  In sticky
1292      agendas, the =q= key will just bury the agenda buffers and
1293      further agenda commands will show existing buffer instead of
1294      generating new ones.
1296      If [[doc::org-agenda-sticky][org-agenda-sticky]] is set to =nil=, =q= will kill the single
1297      agenda buffer.
1299 **** New option [[doc::org-agenda-custom-commands-contexts][org-agenda-custom-commands-contexts]]
1301      Setting this option allows you to define specific context where
1302      agenda commands should be available from.  For example, when set
1303      to this value
1305      #+BEGIN_SRC emacs-lisp
1306   (setq org-agenda-custom-commands-contexts
1307         '(("p" (in-file . "\\.txt"))))
1308 #+END_SRC
1310      then the =p= agenda command will only be available from buffers
1311      visiting *.txt files.  See the docstring and the manual for more
1312      details on how to use this.
1314 **** Changes in bulk actions
1316      The set of commands starting with =k ...= as been deleted and the
1317      features have been merged into the "bulk action" feature.
1319      After you marked some entries in the agenda, if you call =B s=,
1320      the agenda entries will be rescheduled using the date at point if
1321      on a date header.  If you are on an entry with a timestamp, you
1322      will be prompted for a date to reschedule your marked entries to,
1323      using the timestamp at point as the default prompt.
1325      You can now use =k= to capture the marked entry and use the date
1326      at point as an overriding date for the capture template.
1328      To bind this behavior to =M-x org-capture RET= (or its
1329      keybinding), set the new option [[doc::org-capture-use-agenda-date][org-capture-use-agenda-date]] to
1330      =t=.
1332 **** =N= and =P= in the agenda will move to the next/previous item
1334 **** New command [[doc::org-agenda-bulk-mark-all][org-agenda-bulk-mark-all]] to mark all items
1336      This new command is bound to =*= in agenda mode.
1338      There is also a new option [[doc::org-agenda-bulk-mark-char][org-agenda-bulk-mark-char]] to set the
1339      character to use as a mark for bulk actions.
1341 **** New option [[doc::org-agenda-persistent-marks][org-agenda-persistent-marks]]
1343      When set to =non-nil=, marks will remain visible after a bulk
1344      action.  You can temporarily toggle this by pressing =p= when
1345      invoking [[doc::org-agenda-bulk-action][org-agenda-bulk-action]].  Marks are deleted if your
1346      rebuild the agenda buffer or move to another date/span (e.g. with
1347      =f= or =w=).
1349 **** New option [[doc::org-agenda-skip-timestamp-if-deadline-is-shown][org-agenda-skip-timestamp-if-deadline-is-shown]]
1351      =Non-nil= means skip timestamp line if same entry shows because
1352      of deadline.
1354      In the agenda of today, an entry can show up multiple times
1355      because it has both a plain timestamp and has a nearby deadline.
1356      When this variable is t, then only the deadline is shown and the
1357      fact that the entry has a timestamp for or including today is not
1358      shown.  When this variable is =nil=, the entry will be shown
1359      several times.
1361 **** New =todo-unblocked= and =nottodo-unblocked= skip conditions
1363      See the [[http://orgmode.org/w/?p%3Dorg-mode.git%3Ba%3Dcommit%3Bh%3Df426da][git commit]] for more explanations.
1365 **** Allow category filtering in the agenda
1367      You can now filter the agenda by category.  Pressing "<" will
1368      filter by the category of the item on the current line, and
1369      pressing "<" again will remove the filter.  You can combine tag
1370      filters and category filters.
1372      You can use =org-agenda-category-filter= in your custom agenda
1373      views and =org-agenda-category-filter-preset= in your main
1374      configuration.
1376      See also the new command [[doc::org-agenda-filter-by-top-category][org-agenda-filter-by-top-category]]:
1377      hitting =^= will filter by "Top" category: only show entries that
1378      are of the same category than the Top category of the entry at
1379      point.
1381 *** Org Links
1383 **** Inserting links
1385      When inserting links through [[doc::org-insert-link][org-insert-link]], the description is
1386      now displayed first, followed by the literal link, as the
1387      description is often more useful when you look for the link you
1388      want to insert.
1390      Completion now complete both literal links and description.  If
1391      you complete a description, the literal link and its description
1392      will be inserted directly, whereas when you complete the literal
1393      link, you will be prompted for a description (as with Org 7.8.)
1395      In the completion buffer, links to the current buffer are now
1396      highlighted.
1398 **** New templates =%h= and =%(sexp)= for abbreviated links
1400      On top of =%s= template, which is replaced by the link tag in
1401      abbreviated links, you can now use =%h= (which does the same than =%s=
1402      but does not hexify the tag) and =%(sexp)= (which can run a function
1403      that takes the tag as its own argument.)
1405 **** New link type =help=
1407      You can now create links from =help= buffers.
1409      For example, if you request help for the command [[doc::org-agenda][org-agenda]] with
1410      =C-h f org-agenda RET=, creating a link from this buffer will let
1411      you go back to the same buffer.
1413 **** New command [[doc::org-insert-all-links][org-insert-all-links]]
1415      This will insert all links as list items.  With a universal
1416      prefix argument, links will not be deleted from the variable
1417      =org-stored-links=.
1419      This new command is bound to =C-c C-M-l=.
1421 **** New option [[doc::org-url-hexify-p][org-url-hexify-p]]
1423      When set to =nil=, the =URL= part of a link will not be hexified.
1425 **** Org can now open multiple shell links
1427 **** New option [[doc::org-doi-server-url][org-doi-server-url]] to specify an alternate DOI server
1429 **** RET now follows time stamps links
1431 *** Org Editing
1433 **** [[doc::org-todo][org-todo]] and =org-archive-*= can now loop in the active region
1435      When [[doc::org-loop-over-headlines-in-active-region][org-loop-over-headlines-in-active-region]] is =non-nil=, using
1436      [[doc::org-todo][org-todo]] or =org-archive-*= commands in the active region will
1437      loop over headlines.  This is handy if you want to set the TODO
1438      keyword for several items, or archive them quickly.
1440 **** You can now set tags for headlines in a region
1442      If [[doc::org-loop-over-headlines-in-active-region][org-loop-over-headlines-in-active-region]] is =non-nil=, then
1443      selecting the region and hitting =C-c C-q= will set the tags for
1444      all headlines in the region.
1446 **** New command [[doc::org-insert-drawer][org-insert-drawer]] to insert a drawer interactively
1448 **** Comments start with "^[ \t]*# " anywhere on a line
1450      Note that the space after the hashtag is mandatory.  Comments
1451      with "^#+" are not supported anymore.
1453 **** New speed key =#= to toggle the COMMENT cookie on a headline
1455 **** =indent-region-function= is now set to [[doc::org-indent-region][org-indent-region]]
1457      =C-M-\= should now produce useful results.
1459      You can unindent the buffer with [[doc::org-unindent-buffer][org-unindent-buffer]].
1461 **** New option [[doc::org-allow-promoting-top-level-subtree][org-allow-promoting-top-level-subtree]]
1463      When =non-nil=, =S-M-<left>= will promote level-1 subtrees
1464      containing other subtrees.  The level-1 headline will be
1465      commented out.  You can revert to the previous state with =M-x
1466      undo RET=.
1468 *** Org Clock
1470 **** New keybinding =C-c C-x C-z= for [[doc::org-clock-resolve][org-clock-resolve]]
1472 **** New keybinding =C-c C-x C-q= for [[doc::org-clock-cancel][org-clock-cancel]]
1474 **** New command [[doc::org-clock-in-last][org-clock-in-last]] to clock in the last clocked item
1476      This command is bound to =C-c C-x C-x= and will clock in the last
1477      clocked entry, if any.
1479 **** =C-u M-x= [[doc::org-clock-out][org-clock-out]] =RET= now prompts for a state to switch to
1481 **** =S-M-<up/down>= on a clock timestamps adjusts the previous/next clock
1483 **** New option [[doc::org-clock-continuously][org-clock-continuously]]
1485      When set to =nil=, clocking in a task will first try to find the
1486      last clocked out task and restart from when that task was clocked
1487      out.
1489      You can temporarily activate continuous clocking with =C-u C-u
1490      C-u M-x= [[doc::org-clock-in][org-clock-in]] =RET= (three universal prefix arguments)
1491      and =C-u C-u M-x= [[org-clock-in-last][org-clock-in-last]] =RET= (two universal prefix
1492      arguments).
1495 **** New option [[doc::org-clock-frame-title-format][org-clock-frame-title-format]]
1497      This option sets the value of =frame-title-format= when clocking
1498      in.
1500 **** New options for controlling the clockreport display
1502      [[doc::org-clock-file-time-cell-format][org-clock-file-time-cell-format]]: Format string for the file time
1503      cells in clockreport.
1505      [[doc::org-clock-total-time-cell-format][org-clock-total-time-cell-format]]: Format string for the total
1506      time cells in clockreport.
1509 **** New options for controlling the clock/timer display
1511      [[doc::org-clock-clocked-in-display][org-clock-clocked-in-display]]: control whether the current clock
1512      is displayed in the mode line and/or frame title.
1514      [[doc::org-timer-display][org-timer-display]]: control whether the current timer is displayed
1515      in the mode line and/or frame title.
1517      This allows the clock and timer to be displayed in the frame
1518      title instead of, or as well as, the mode line.  This is useful
1519      for people with limited space in the mode line but with ample
1520      space in the frame title.
1522 *** Org Appearance
1524 **** New option [[doc::org-custom-properties][org-custom-properties]]
1526      The visibility of properties listed in this options can be turn
1527      on/off with [[doc::org-toggle-custom-properties-visibility][org-toggle-custom-properties-visibility]].  This might
1528      be useful for properties used by third-part tools or that you
1529      don't want to see temporarily.
1531 **** New command [[doc::org-redisplay-inline-images][org-redisplay-inline-images]]
1533      This will redisplay all images.  It is bound to =C-c C-x C-M-v=.
1535 **** New entities in =org-entities.el=
1537      There are these new entities:
1539      : ("tilde" "\\~{}" nil "&tilde;" "~" "~" "~")
1540      : ("slash" "/" nil "/" "/" "/" "/")
1541      : ("plus" "+" nil "+" "+" "+" "+")
1542      : ("under" "\\_" nil "_" "_" "_" "_")
1543      : ("equal" "=" nil "=" "=" "=" "=")
1544      : ("asciicirc" "\\textasciicircum{}" nil "^" "^" "^" "^")
1546 **** New face =org-list-dt= for definition terms
1547 **** New face =org-date-selected= for the selected calendar day
1548 **** New face value for =org-document-title=
1550      The face is back to a normal height.
1552 *** Org Columns
1554 **** New speed command =:= to activate the column view
1555 **** New special property =CLOCKSUM_T= to display today's clocked time
1557      You can use =CLOCKSUM_T= the same way you use =CLOCKSUM=.  It
1558      will display the time spent on tasks for today only.
1560 **** Use the =:COLUMNS:= property in columnview dynamic blocks
1562      If the =:COLUMNS:= is set in a subtree, the columnview dynamic
1563      block will use its value as the column format.
1565 **** Consider inline tasks when computing a sum
1567 *** Org Dates and Time Stamps
1569 **** Enhanced [[doc::org-sparse-tree][org-sparse-tree]]
1571      =C-c /= can now check for time ranges.
1573      When checking for dates with =C-c /= it is useful to change the
1574      type of dates that you are interested in.  You can now do this
1575      interactively with =c= after =C-c /= and/or by setting
1576      [[doc::org-sparse-tree-default-date-type][org-sparse-tree-default-date-type]] to the default value you want.
1578 **** Support for hourly repeat cookies
1580      You can now use
1582      : SCHEDULED: <2012-08-20 lun. 08:00 +1h>
1584      if you want to add an hourly repeater to an entry.
1586 **** =C-u C-u C-c .= inserts a time-stamp with no prompt
1588 **** When (setq [[doc::org-read-date-prefer-future][org-read-date-prefer-future]] 'time), accept days in the prompt
1590      "8am Wed" and "Wed 8am" are now acceptable values when entering a
1591      date from the prompt.  If [[doc::org-read-date-prefer-future][org-read-date-prefer-future]] is set to
1592      =time=, this will produce the expected prompt indication.
1594 **** New option [[doc::org-datetree-add-timestamp][org-datetree-add-timestamp]]
1596      When set to =non-nil=, datetree entries will also have a
1597      timestamp.  This is useful if you want to see these entries in a
1598      sparse tree with =C-c /=.
1600 *** Org Capture
1602 **** New command [[doc::org-capture-string][org-capture-string]]
1604      M-x [[doc::org-capture-string][org-capture-string]] RET will prompt for a string and a capture
1605      template.  The string will be used as an annotation for the
1606      template.  This is useful when capturing in batch mode as it lets
1607      you define the content of the template without being in Emacs.
1609 **** New option [[doc::org-capture-templates-contexts][org-capture-templates-contexts]]
1611      Setting this option allows you to define specific context where
1612      capture templates should be available from.  For example, when
1613      set to this value
1615      #+BEGIN_SRC emacs-lisp
1616   (setq org-capture-templates-contexts
1617         '(("c" (in-mode . "message-mode"))))
1618 #+END_SRC
1620      then the =c= capture template will only be available from
1621      =message-mode= buffers.  See the docstring and the manual for
1622      more details on how to use this.
1624 **** New =%l= template to insert the literal link
1625 **** New option [[doc::org-capture-bookmark][org-capture-bookmark]]
1627      Org used to automatically add a bookmark with capture a note.
1628      You can now turn this on by setting [[doc::org-capture-bookmark][org-capture-bookmark]] to
1629      =nil=.
1631 **** Expand =%<num>= escape sequences into text entered for <num>'th =%^{PROMPT}= escape
1633      See the manual for more explanations.
1635 **** More control over empty lines
1637      You can use =:empty-lines-before= and =:empty-lines-after= to
1638      control the insertion of empty lines.  Check the manual for more
1639      explanations.
1641 **** New hook [[doc::org-capture-prepare-finalize-hook][org-capture-prepare-finalize-hook]]
1643      This new hook runs before the finalization process starts.
1645 *** Org Export
1647 **** New functions =orgtbl-to-table.el= and =orgtbl-to-unicode=
1649      =orgtbl-to-table.el= convert the table to a =table.el= table, and
1650      =orgtbl-to-unicode= will use =ascii-art-to-unicode.el= (when
1651      available) to print beautiful tables.
1653 **** [[doc::org-table-export][org-table-export]] now a bit clever about the target format
1655      When you specify a file name like =table.csv=, [[doc::org-table-export][org-table-export]]
1656      will now suggest =orgtbl-to-csv= the default method for exporting
1657      the table.
1659 **** New option [[doc::org-export-date-timestamp-format][org-export-date-timestamp-format]]
1661      The option allows to set a time string format for Org timestamps
1662      in the #+DATE option.
1664 **** LaTeX: New options for exporting table rules :tstart, :hline and :tend
1666      See [[doc::org-export-latex-tables-hline][org-export-latex-tables-hline]] and [[doc::org-export-latex-tables-tend][org-export-latex-tables-tend]].
1668 **** LaTeX: You can now set =:hfmt= from =#+ATTR_LaTeX=
1669 **** Beamer: Add support and keybinding for the =exampleblock= environment
1671      Add support for these languages in [[doc::org-export-language-setup][org-export-language-setup]].
1672      More languages are always welcome.
1674 **** Beamer: New option [[doc::org-beamer-inherited-properties][org-beamer-inherited-properties]]
1676      This option allows Beamer export to inherit some properties.
1677      Thanks to Carsten for implementing this.
1679 **** ODT: Add support for ODT export in org-bbdb.el
1680 **** ODT: Add support for indented tables (see [[http://orgmode.org/w/?p%3Dorg-mode.git%3Ba%3Dcommit%3Bh%3De9fd33][this commit]] for details)
1681 **** ODT: Improve the conversion from ODT to other formats
1682 **** ASCII: Swap the level-1/level-2 characters to underline the headlines
1683 **** Support for Chinese, simplified Chinese, Russian, Ukrainian and Japanese
1684 **** HTML: New option [[doc::org-export-html-date-format-string][org-export-html-date-format-string]]
1686      Format string to format the date and time in HTML export.  Thanks
1687      to Sรฉbastien Vauban for this patch.
1689 *** Org Babel
1691 **** New =:results drawer= parameter
1693 =:results drawer= replaces =:results wrap=, which is deprecated but still
1694 supported.
1696 **** =:results org= now put results in a =#+BEGIN_SRC org= block
1698 =:results org= used to put results in a =#+BEGIN_ORG= block but it now puts
1699 results in a =#+BEGIN_SRC org= block, with comma-escaped lines.
1701 =#+BEGIN_ORG= blocks are obsolete.
1703 **** Exporting =#+BEGIN_SRC org= blocks exports the code
1705 It used to exports the results of the code.
1707 *** Miscellaneous
1709 **** New menu entry for [[doc::org-refile][org-refile]]
1710 **** Allow capturing to encrypted entries
1712 If you capture to an encrypted entry, it will be decrypted before
1713 inserting the template then re-encrypted after finalizing the capture.
1715 **** Inactive timestamps are now handled in tables
1717 Calc can do computation on active time-stamps like <2012-09-29 sat.>.
1718 Inactive time-stamps in a table's cell are now internally deactivated so
1719 that Calc formulas can operate on them.
1721 **** [[doc::org-table-number-regexp][org-table-number-regexp]] can now accept comma as decimal mark
1722 **** Org allows a new property =APPT_WARNTIME=
1724      You can set it with the =W= speedy key or set it manually.  When
1725      set, exporting to iCalendar and [[doc::org-agenda-to-appt][org-agenda-to-appt]] will use the
1726      value of this property as the number of minutes for the warning
1727      alarm.
1729 **** New command [[doc::org-inc-effort][org-inc-effort]]
1731      This will increment the effort value.
1733      It is bound to =C-c C-x E= and to =E= as a speedy command.
1735 **** Attach: Add support for creating symbolic links
1737      =org-attach-method= now supports a new method =lns=, allowing to
1738      attach symbolic links.
1740 **** Archive: you can now archive to a datetree
1742 **** New option [[doc::org-inlinetask-show-first-star][org-inlinetask-show-first-star]]
1744      =Non-nil= means display the first star of an inline task as
1745      additional marker.  When =nil=, the first star is not shown.
1747 **** New option [[doc::org-latex-preview-ltxpng-directory][org-latex-preview-ltxpng-directory]]
1749      This lets you define the path for the =ltxpng/= directory.
1751 **** You can now use imagemagick instead of dvipng to preview LaTeX fragments
1752 **** You can now turn off [[doc::orgstruct++-mode][orgstruct++-mode]] safely
1753 **** =C-u C-c C-c= on list items to add check boxes
1755      =C-u C-c C-c= will add an empty check box on a list item.
1757      When hit from the top of the list, it will add check boxes for
1758      all top level list items.
1760 **** =org-list-ending-method= and =org-list-end-regexp= are now obsolete
1762      Fall back on using =org-list-end-re= only, which see.
1764 **** org-feed.el now expands =%(sexp)= templates
1765 **** New option [[doc::org-protocol-data-separator][org-protocol-data-separator]]
1767 **** New option [[doc::org-ditaa-jar-option][org-ditaa-jar-option]] to specify the ditaa jar file
1769 **** New possible value for [[doc::org-loop-over-headlines-in-active-region][org-loop-over-headlines-in-active-region]]
1771      When [[doc::org-loop-over-headlines-in-active-region][org-loop-over-headlines-in-active-region]] is set to
1772      =start-level=, the command will loop over the active region but
1773      will only act upon entries that are of the same level than the
1774      first headline in the region.
1776 **** New option [[doc::org-habit-show-all-today][org-habit-show-all-today]]
1778      When set to =t=, show all (even unscheduled) habits on today's
1779      agenda.
1781 ** Important bug fixes
1783 *** M-TAB on options keywords perform completion correctly again
1785     If you hit =M-TAB= on keywords like =#+TITLE=, Org will try to
1786     perform completion with meaningful values.
1788 *** Add licenses to javascript embedded and external code snippets
1790     Embedded javascript code produced when exporting an Org file to
1791     HTML is now licensed under GPLv3 (or later), and the copyright is
1792     owned by the Free Software Foundation, Inc.
1794     The javascript code for embedding MathJax in the browser mentions
1795     the MathJax copyright and the Apache 2.0 license.
1797     The javascript code for embedding =org-injo.js= in the browser
1798     mentions the copyright of Sebastian Rose and the GPLv3 (or later)
1799     license.
1801     =org-export-html-scripts= is now a variable, so that you can adapt
1802     the code and the license to your needs.
1804     See http://www.gnu.org/philosophy/javascript-trap.html for
1805     explanations on why these changes were necessary.
1807 * Version 7.8.11
1809 ** Incompatible changes
1811 *** Emacs 21 support has been dropped
1813     Do not use Org mode 7.xx with Emacs 21, use [[http://orgmode.org/org-6.36c.zip][version 6.36c]] instead.
1815 *** XEmacs support requires the XEmacs development version
1817     To use Org mode 7.xx with XEmacs, you need to run the developer
1818     version of XEmacs.  We were about to drop XEmacs support entirely,
1819     but Michael Sperber stepped in and made changes to XEmacs that
1820     made it easier to keep the support.  Thanks to Michael for this
1821     last-minute save.
1823 *** New keys for TODO sparse trees
1825     The key =C-c C-v= is now reserved for Org Babel action.  TODO
1826     sparse trees can still be made with =C-c / t= (all not-done
1827     states) and =C-c / T= (specific states).
1829 *** The Agenda =org-agenda-ndays= is now obsolete
1831     The variable =org-agenda-ndays= is obsolete - please use
1832     =org-agenda-span= instead.
1834     Thanks to Julien Danjou for this.
1836 *** Changes to the intended use of =org-export-latex-classes=
1838     So far this variable has been used to specify the complete header
1839     of the LaTeX document, including all the =\usepackage= calls
1840     necessary for the document.  This setup makes it difficult to
1841     maintain the list of packages that Org itself would like to call,
1842     for example for the special symbol support it needs.
1844     First of all, you can *opt out of this change* in the following
1845     way: You can say: /I want to have full control over headers, and I
1846     will take responsibility to include the packages Org needs/.  If
1847     that is what you want, add this to your configuration and skip the
1848     rest of this section (except maybe for the description of the
1849     =[EXTRA]= place holder):
1851     #+begin_src emacs-lisp
1852    (setq org-export-latex-default-packages-alist nil
1853          org-export-latex-packages-alist nil)
1854     #+end_src
1856     /Continue to read here if you want to go along with the modified
1857     setup./
1859     There are now two variables that should be used to list the LaTeX
1860     packages that need to be included in all classes.  The header
1861     definition in =org-export-latex-classes= should then not contain
1862     the corresponding =\usepackage= calls (see below).
1864     The two new variables are:
1866     1. =org-export-latex-default-packages-alist= :: This is the
1867          variable where Org-mode itself puts the packages it needs.
1868          Normally you should not change this variable.  The only
1869          reason to change it anyway is when one of these packages
1870          causes a conflict with another package you want to use.  Then
1871          you can remove that packages and hope that you are not using
1872          Org-mode functionality that needs it.
1874     2. =org-export-latex-packages-alist= :: This is the variable where
1875          you can put the packages that you'd like to use across all
1876          classes.
1878     The sequence how these customizations will show up in the LaTeX
1879     document are:
1881     1. Header from =org-export-latex-classes=
1882     2. =org-export-latex-default-packages-alist=
1883     3. =org-export-latex-packages-alist=
1884     4. Buffer-specific things set with =#+LaTeX_HEADER:=
1886     If you want more control about which segment is placed where, or
1887     if you want, for a specific class, have full control over the
1888     header and exclude some of the automatic building blocks, you can
1889     put the following macro-like place holders into the header:
1891     #+begin_example
1892     [DEFAULT-PACKAGES]      \usepackage statements for default packages
1893     [NO-DEFAULT-PACKAGES]   do not include any of the default packages
1894     [PACKAGES]              \usepackage statements for packages
1895     [NO-PACKAGES]           do not include the packages
1896     [EXTRA]                 the stuff from #+LaTeX_HEADER
1897     [NO-EXTRA]              do not include #+LaTeX_HEADER stuff
1898     #+end_example
1900     If you have currently customized =org-export-latex-classes=, you
1901     should revise that customization and remove any package calls that
1902     are covered by =org-export-latex-default-packages-alist=.  This
1903     applies to the following packages:
1905     - inputenc
1906     - fontenc
1907     - fixltx2e
1908     - graphicx
1909     - longtable
1910     - float
1911     - wrapfig
1912     - soul
1913     - t1enc
1914     - textcomp
1915     - marvosym
1916     - wasysym
1917     - latexsym
1918     - amssymb
1919     - hyperref
1921     If one of these packages creates a conflict with another package
1922     you are using, you can remove it from
1923     =org-export-latex-default-packages-alist=.  But then you risk that
1924     some of the advertised export features of Org will not work
1925     properly.
1927     You can also consider moving packages that you use in all classes
1928     to =org-export-latex-packages-alist=.  If necessary, put the place
1929     holders so that the packages get loaded in the right sequence.  As
1930     said above, for backward compatibility, if you omit the place
1931     holders, all the variables will dump their content at the end of
1932     the header.
1934 *** The constant =org-html-entities= is obsolete
1936     Its content is now part of the new constant =org-entities=, which
1937     is defined in the file org-entities.el.  =org-html-entities= was
1938     an internal variable, but it is possible that some users did write
1939     code using it.
1941 *** =org-bbdb-anniversary-format-alist= has changed
1943     Please check the docstring and update your settings accordingly.
1945 *** Deleted =org-mode-p=
1947     This function has been deleted: please update your code.
1949 ** Important new features
1951 *** New Org to ODT exporter
1953     Jambunathan's Org to ODT exporter is now part of Org.
1955     To use it, it `C-c C-e o' in an Org file.  See the documentation
1956     for more information on how to customize it.
1958 *** org-capture.el is now the default capture system
1960     This replaces the earlier system org-remember.  The manual only
1961     describes org-capture, but for people who prefer to continue to
1962     use org-remember, we keep a static copy of the former manual
1963     section [[http://orgmode.org/org-remember.pdf][chapter about remember]].
1965     The new system has a technically cleaner implementation and more
1966     possibilities for capturing different types of data.  See
1967     [[http://thread.gmane.org/gmane.emacs.orgmode/26441/focus%3D26441][Carsten's announcement]] for more details.
1969     To switch over to the new system:
1971     1. Run
1973      : M-x org-capture-import-remember-templates RET
1975        to get a translated version of your remember templates into the
1976        new variable =org-capture-templates=.  This will "mostly" work,
1977        but maybe not for all cases.  At least it will give you a good
1978        place to modify your templates.  After running this command,
1979        enter the customize buffer for this variable with
1981      : M-x customize-variable RET org-capture-templates RET
1983        and convince yourself that everything is OK.  Then save the
1984        customization.
1986     2. Bind the command =org-capture= to a key, similar to what you did
1987        with org-remember:
1989      : (define-key global-map "\C-cc" 'org-capture)
1991        If your fingers prefer =C-c r=, you can also use this key once
1992        you have decided to move over completely to the new
1993        implementation.  During a test time, there is nothing wrong
1994        with using both system in parallel.
1996 ** New libraries
1998 *** New Org libraries
1999 **** org-eshell.el (Konrad Hinsen)
2001      Implement links to eshell buffers.
2003 **** org-special-blocks (Carsten Dominik)
2005      This package generalizes the #+begin_foo and #+end_foo tokens.
2007      To use, put the following in your init file:
2009      #+BEGIN_EXAMPLE
2010 (require 'org-special-blocks)
2011 #+END_EXAMPLE
2013      The tokens #+begin_center, #+begin_verse, etc. existed
2014      previously.  This package generalizes them (at least for the
2015      LaTeX and html exporters).  When a #+begin_foo token is
2016      encountered by the LaTeX exporter, it is expanded
2017      into \begin{foo}.  The text inside the environment is not
2018      protected, as text inside environments generally is.
2019      When #+begin_foo is encountered by the html exporter, a div with
2020      class foo is inserted into the HTML file.  It is up to the user
2021      to add this class to his or her stylesheet if this div is to mean
2022      anything.
2024 **** org-taskjuggler.el (Christian Egli)
2026      Christian Egli's /org-taskjuggler.el/ module is now part of Org.
2027      He also wrote a [[http://orgmode.org/worg/org-tutorials/org-taskjuggler.php][tutorial]] for it.
2029 **** org-ctags.el (Paul Sexton)
2031      Targets like =<<my target>>= can now be found by Emacs' etag
2032      functionality, and Org-mode links can be used to to link to
2033      etags, also in non-Org-mode files.  For details, see the file
2034      /org-ctags.el/.
2036      This feature uses a new hook =org-open-link-functions= which will
2037      call function to do something special with text links.
2039      Thanks to Paul Sexton for this contribution.
2041 **** org-docview.el (Jan Bรถcker)
2043      This new module allows links to various file types using docview, where
2044      Emacs displays images of document pages.  Docview link types can point
2045      to a specific page in a document, for example to page 131 of the
2046      Org-mode manual:
2048      : [[docview:~/.elisp/org/doc/org.pdf::131][Org-Mode Manual]]
2050      Thanks to Jan Bรถcker for this contribution.
2052 *** New Babel libraries
2054 - ob-picolisp.el (Thorsten Jolitz)
2055 - ob-fortran.el (Sergey Litvinov)
2056 - ob-shen.el (Eric Schulte)
2057 - ob-maxima.el (Eric S Fraga)
2058 - ob-java.el (Eric Schulte)
2059 - ob-lilypond.el (Martyn Jago)
2060 - ob-awk.el (Eric Schulte)
2062 ** Other new features and various enhancements
2064 *** Hyperlinks
2066 **** Org-Bibtex -- major improvements
2068      Provides support for managing bibtex bibliographical references
2069      data in headline properties.  Each headline corresponds to a
2070      single reference and the relevant bibliographic meta-data is
2071      stored in headline properties, leaving the body of the headline
2072      free to hold notes and comments.  Org-bibtex is aware of all
2073      standard bibtex reference types and fields.
2075      The key new functions are
2077      - org-bibtex-check :: queries the user to flesh out all required
2078           (and with prefix argument optional) bibtex fields available
2079           for the specific reference =type= of the current headline.
2081      - org-bibtex-create :: Create a new entry at the given level,
2082           using org-bibtex-check to flesh out the relevant fields.
2084      - org-bibtex-yank :: Yank a bibtex entry on the kill ring as a
2085           formatted Org-mode headline into the current buffer
2087      - org-bibtex-export-to-kill-ring :: Export the current headline
2088           to the kill ring as a formatted bibtex entry.
2090 **** org-gnus.el now allows link creation from messages
2092      You can now create links from messages.  This is particularly
2093      useful when the user wants to stored messages that he sends, for
2094      later check.  Thanks to Ulf Stegemann for the patch.
2096 **** Modified link escaping
2098      David Maus worked on `org-link-escape'.  See [[http://article.gmane.org/gmane.emacs.orgmode/37888][his message]]:
2100      : Percent escaping is used in Org mode to escape certain characters
2101      : in links that would either break the parser (e.g. square brackets
2102      : in link target oder description) or are not allowed to appear in
2103      : a particular link type (e.g. non-ascii characters in a http:
2104      : link).
2105      :
2106      : With this change in place Org will apply percent escaping and
2107      : unescaping more consistently especially for non-ascii characters.
2108      : Additionally some of the outstanding bugs or glitches concerning
2109      : percent escaped links are solved.
2111      Thanks a lot to David for this work.
2113 **** Make =org-store-link= point to directory in a dired buffer
2115      When, in a dired buffer, the cursor is not in a line listing a
2116      file, `org-store-link' will store a link to the directory.
2118      Patch by Stephen Eglen.
2120 **** Allow regexps in =org-file-apps= to capture link parameters
2122      The way extension regexps in =org-file-apps= are handled has
2123      changed.  Instead of matching against the file name, the regexps
2124      are now matched against the whole link, and you can use grouping
2125      to extract link parameters which you can then use in a command
2126      string to be executed.
2128      For example, to allow linking to PDF files using the syntax
2129      =file:/doc.pdf::<page number>=, you can add the following entry
2130      to org-file-apps:
2132      #+begin_example
2133      Extension: \.pdf::\([0-9]+\)\'
2134      Command:   evince "%s" -p %1
2135      #+end_example
2137      Thanks to Jan Bรถcker for a patch to this effect.
2139 *** Dates and time
2141 **** Allow relative time when scheduling/adding a deadline
2143      You can now use relative duration strings like "-2d" or "++3w"
2144      when calling =org-schedule= or =org-deadline=: it will schedule
2145      (or set the deadline for) the item respectively two days before
2146      today and three weeks after the current timestamp, if any.
2148      You can use this programmatically: =(org-schedule nil "+2d")=
2149      will work on the current entry.
2151      You can also use this while (bulk-)rescheduling and
2152      (bulk-)resetting the deadline of (several) items from the agenda.
2154      Thanks to Memnon Anon for a heads up about this!
2156 **** American-style dates are now understood by =org-read-date=
2158      So when you are prompted for a date, you can now answer like this
2160      #+begin_example
2161      2/5/3         --> 2003-02-05
2162      2/5           --> <CURRENT-YEAR>-02-05
2163      #+end_example
2165 *** Agenda
2167 **** =org-agenda-custom-commands= has a default value
2169      This option used to be `nil' by default.  This now has a default
2170      value, displaying an agenda and all TODOs.  See the docstring for
2171      details.  Thanks to Carsten for this.
2173 **** Improved filtering through =org-agenda-to-appt=
2175      The new function allows the user to refine the scope of entries
2176      to pass to =org-agenda-get-day-entries= and allows to filter out
2177      entries using a function.
2179      Thanks to Peter Mรผnster for raising a related issue and to
2180      Tassilo Horn for this idea.  Also thanks to Peter Mรผnster for
2181      [[git:68ffb7a7][fixing a small bug]] in the final implementation.
2183 **** Allow ap/pm times in agenda time grid
2185      Times in the agenda can now be displayed in am/pm format.  See
2186      the new variable =org-agenda-timegrid-use-ampm=.  Thanks to
2187      C. A. Webber for a patch to this effect.
2189 **** Agenda: Added a bulk "scattering" command
2191      =B S= in the agenda buffer will cause tasks to be rescheduled a
2192      random number of days into the future, with 7 as the default.
2193      This is useful if you've got a ton of tasks scheduled for today,
2194      you realize you'll never deal with them all, and you just want
2195      them to be distributed across the next N days.  When called with
2196      a prefix arg, rescheduling will avoid weekend days.
2198      Thanks to John Wiegley for this.
2200 *** Exporting
2202 **** Simplification of org-export-html-preamble/postamble
2204      When set to `t', export the preamble/postamble as usual, honoring
2205      the =org-export-email/author/creator-info= variables.
2207      When set to a formatting string, insert this string.  See the
2208      docstring of these variable for details about available
2209      %-sequences.
2211      You can set =:html-preamble= in publishing project in the same
2212      way: `t' means to honor =:email/creator/author-info=, and a
2213      formatting string will insert a string.
2215 **** New exporters to Latin-1 and UTF-8
2217      While Ulf Stegemann was going through the entities list to
2218      improve the LaTeX export, he had the great idea to provide
2219      representations for many of the entities in Latin-1, and for all
2220      of them in UTF-8.  This means that we can now export files rich
2221      in special symbols to Latin-1 and to UTF-8 files.  These new
2222      exporters can be reached with the commands =C-c C-e n= and =C-c
2223      C-e u=, respectively.
2225      When there is no representation for a given symbol in the
2226      targeted coding system, you can choose to keep the TeX-macro-like
2227      representation, or to get an "explanatory" representation.  For
2228      example, =\simeq= could be represented as "[approx. equal to]".
2229      Please use the variable =org-entities-ascii-explanatory= to state
2230      your preference.
2232 **** HTML export: Add class to outline containers using property
2234      The =HTML_CONTAINER_CLASS= property can now be used to add a
2235      class name to the outline container of a node in HTML export.
2237 **** Throw an error when creating an image from a LaTeX snippet fails
2239      This behavior can be configured with the new option variable
2240      =org-format-latex-signal-error=.
2242 **** Support for creating BEAMER presentations from Org-mode documents
2244      Org-mode documents or subtrees can now be converted directly in
2245      to BEAMER presentation.  Turning a tree into a simple
2246      presentations is straight forward, and there is also quite some
2247      support to make richer presentations as well.  See the [[http://orgmode.org/manual/Beamer-class-export.html#Beamer-class-export][BEAMER
2248      section]] in the manual for more details.
2250      Thanks to everyone who has contributed to the discussion about
2251      BEAMER support and how it should work.  This was a great example
2252      for how this community can achieve a much better result than any
2253      individual could.
2255 *** Refiling
2257 **** Refile targets can now be cached
2259      You can turn on caching of refile targets by setting the variable
2260      =org-refile-use-cache=.  This should speed up refiling if you
2261      have many eligible targets in many files.  If you need to update
2262      the cache because Org misses a newly created entry or still
2263      offers a deleted one, press =C-0 C-c C-w=.
2265 **** New logging support for refiling
2267      Whenever you refile an item, a time stamp and even a note can be
2268      added to this entry.  For details, see the new option
2269      =org-log-refile=.
2271      Thanks to Charles Cave for this idea.
2273 *** Completion
2275 **** In-buffer completion is now done using John Wiegley's pcomplete.el
2277      Thanks to John Wiegley for much of this code.
2279 *** Tables
2281 **** New command =org-table-transpose-table-at-point=
2283      See the docstring.  This hack from Juan Pechiar is now part of
2284      Org's core.  Thanks to Juan!
2286 **** Display field's coordinates when editing it with =C-c `=
2288      When editing a field with =C-c `=, the field's coordinate will
2289      the displayed in the buffer.
2291      Thanks to Michael Brand for a patch to this effect.
2293 **** Spreadsheet computation of durations and time values
2295      If you want to compute time values use the =T= flag, either in
2296      Calc formulas or Elisp formulas:
2298      | Task 1 | Task 2 |   Total |
2299      |--------+--------+---------|
2300      |  35:00 |  35:00 | 1:10:00 |
2301      #+TBLFM: @2$3=$1+$2;T
2303      Values must be of the form =[HH:]MM:SS=, where hours are
2304      optional.
2306      Thanks to Martin Halder, Eric Schulte and Carsten for code and
2307      feedback on this.
2309 **** Implement formulas applying to field ranges
2311      Carsten implemented this field-ranges formulas.
2313      : A frequently requested feature for tables has been to be able to define
2314      : row formulas in a way similar to column formulas.  The patch below allows
2315      : things like
2316      :
2317      : @3=
2318      : @2$2..@5$7=
2319      : @I$2..@II$4=
2320      :
2321      : as the left hand side for table formulas in order to write a formula that
2322      : is valid for an entire column or for a rectangular section in a
2323      : table.
2325      Thanks a lot to Carsten for this.
2327 **** Sending radio tables from org buffers is now allowed
2329      Org radio tables can no also be sent inside Org buffers.  Also,
2330      there is a new hook which get called after a table has been sent.
2332      Thanks to Seweryn Kokot.
2334 *** Lists
2336 **** Improved handling of lists
2338      Nicolas Goaziou extended and improved the way Org handles lists.
2340      1. Indentation of text determines again end of items in
2341         lists. So, some text less indented than the previous item
2342         doesn't close the whole list anymore, only all items more
2343         indented than it.
2345      2. Alphabetical bullets are implemented, through the use of the
2346         variable `org-alphabetical-lists'. This also adds alphabetical
2347         counters like [@c] or [@W].
2349      3. Lists can now safely contain drawers, inline tasks, or various
2350         blocks, themselves containing lists. Two variables are
2351         controlling this: `org-list-forbidden-blocks', and
2352         `org-list-export-context'.
2354      4. Improve `newline-and-indent' (C-j): used in an item, it will
2355         keep text from moving at column 0. This allows to split text
2356         and make paragraphs and still not break the list.
2358      5. Improve `org-toggle-item' (C-c -): used on a region with
2359         standard text, it will change the region into one item. With a
2360         prefix argument, it will fallback to the previous behavior and
2361         make every line in region an item. It permits to easily
2362         integrate paragraphs inside a list.
2364      6. `fill-paragraph' (M-q) now understands lists. It can freely be
2365         used inside items, or on text just after a list, even with no
2366         blank line around, without breaking list structure.
2368      Thanks a lot to Nicolas for all this!
2370 *** Inline display of linked images
2372     Images can now be displayed inline.  The key C-c C-x C-v does
2373     toggle the display of such images.  Note that only image links
2374     that have no description part will be inlined.
2376 *** Implement offsets for ordered lists
2378     If you want to start an ordered plain list with a number different
2379     from 1, you can now do it like this:
2381     : 1. [@start:12] will star a lit a number 12
2383 *** Babel: code block body expansion for table and preview
2385     In org-babel, code is "expanded" prior to evaluation. I.e. the
2386     code that is actually evaluated comprises the code block contents,
2387     augmented with the extra code which assigns the referenced data to
2388     variables. It is now possible to preview expanded contents, and
2389     also to expand code during during tangling. This expansion takes
2390     into account all header arguments, and variables.
2392     A new keybinding `C-c M-b p' bound to `org-babel-expand-src-block'
2393     can be used from inside of a source code block to preview its
2394     expanded contents (which can be very useful for debugging).
2395     tangling
2397     The expanded body can now be tangled, this includes variable
2398     values which may be the results of other source-code blocks, or
2399     stored in headline properties or tables. One possible use for this
2400     is to allow those using org-babel for their emacs initialization
2401     to store values (e.g. usernames, passwords, etc...) in headline
2402     properties or in tables.
2404     Org-babel now supports three new header arguments, and new default
2405     behavior for handling horizontal lines in tables (hlines), column
2406     names, and rownames across all languages.
2408 *** Editing Convenience and Appearance
2410 **** New command =org-copy-visible= (=C-c C-x v=)
2412      This command will copy the visible text in the region into the
2413      kill ring.  Thanks to Florian Beck for this function and to
2414      Carsten for adding it to org.el and documenting it!
2416 **** Make it possible to protect hidden subtrees from being killed by =C-k=
2418      See the new variable =org-ctrl-k-protect-subtree=.  This was a
2419      request by Scott Otterson.
2421 **** Implement pretty display of entities, sub-, and superscripts.
2423      The command =C-c C-x \= toggles the display of Org's special
2424      entities like =\alpha= as pretty unicode characters.  Also, sub
2425      and superscripts are displayed in a pretty way (raised/lower
2426      display, in a smaller font).  If you want to exclude sub- and
2427      superscripts, see the variable
2428      =org-pretty-entities-include-sub-superscripts=.
2430      Thanks to Eric Schulte and Ulf Stegeman for making this possible.
2432 **** New faces for title, date, author and email address lines
2434      The keywords in these lines are now dimmed out, and the title is
2435      displayed in a larger font, and a special font is also used for
2436      author, date, and email information.  This is implemented by the
2437      following new faces:
2439      =org-document-title=
2440      =org-document-info=
2441      =org-document-info-keyword=
2443      In addition, the variable =org-hidden-keywords= can be used to
2444      make the corresponding keywords disappear.
2446      Thanks to Dan Davison for this feature.
2448 **** Simpler way to specify faces for tags and todo keywords
2450      The variables =org-todo-keyword-faces=, =org-tag-faces=, and
2451      =org-priority-faces= now accept simple color names as
2452      specifications.  The colors will be used as either foreground or
2453      background color for the corresponding keyword.  See also the
2454      variable =org-faces-easy-properties=, which governs which face
2455      property is affected by this setting.
2457      This is really a great simplification for setting keyword faces.
2458      The change is based on an idea and patch by Ryan Thompson.
2460 **** <N> in tables now means fixed width, not maximum width
2462      Requested by Michael Brand.
2464 **** Better level cycling function
2466      =TAB= in an empty headline cycles the level of that headline
2467      through likely states.  Ryan Thompson implemented an improved
2468      version of this function, which does not depend upon when exactly
2469      this command is used.  Thanks to Ryan for this improvement.
2471 **** Adaptive filling
2473      For paragraph text, =org-adaptive-fill-function= did not handle
2474      the base case of regular text which needed to be filled.  This is
2475      now fixed.  Among other things, it allows email-style ">"
2476      comments to be filled correctly.
2478      Thanks to Dan Hackney for this patch.
2480 **** `org-reveal' (=C-c C-r=) also decrypts encrypted entries (org-crypt.el)
2482      Thanks to Richard Riley for triggering this change.
2484 **** Better automatic letter selection for TODO keywords
2486      When all first letters of keywords have been used, Org now
2487      assigns more meaningful characters based on the keywords.
2489      Thanks to Mikael Fornius for this patch.
2491 *** Clocking
2493 **** Clock: Allow synchronous update of timestamps in CLOCK log
2495      Using =S-M-<up/down>= on CLOCK log timestamps will
2496      increase/decrease the two timestamps on this line so that
2497      duration will keep the same.  Note that duration can still be
2498      slightly modified in case a timestamp needs some rounding.
2500      Thanks to Rainer Stengele for this idea.
2502 **** Localized clock tables
2504      Clock tables now support a new new =:lang= parameter, allowing
2505      the user to customize the localization of the table headers.  See
2506      the variable =org-clock-clocktable-language-setup= which controls
2507      available translated strings.
2509 **** Show clock overruns in mode line
2511      When clocking an item with a planned effort, overrunning the
2512      planned time is now made visible in the mode line, for example
2513      using the new face =org-mode-line-clock-overrun=, or by adding an
2514      extra string given by =org-task-overrun-text=.
2516      Thanks to Richard Riley for a patch to this effect.
2518 **** Clock reports can now include the running, incomplete clock
2520      If you have a clock running, and the entry being clocked falls
2521      into the scope when creating a clock table, the time so far spent
2522      can be added to the total.  This behavior depends on the setting
2523      of =org-clock-report-include-clocking-task=.  The default is
2524      =nil=.
2526      Thanks to Bernt Hansen for this useful addition.
2528 *** Misc
2530 **** Improvements with inline tasks and indentation
2532      There is now a configurable way on how to export inline tasks.
2533      See the new variable =org-inlinetask-export-templates=.
2535      Thanks to Nicolas Goaziou for coding these changes.
2537 **** A property value of "nil" now means to unset a property
2539      This can be useful in particular with property inheritance, if
2540      some upper level has the property, and some grandchild of it
2541      would like to have the default settings (i.e. not overruled by a
2542      property) back.
2544      Thanks to Robert Goldman and Bernt Hansen for suggesting this
2545      change.
2547 **** New helper functions in org-table.el
2549      There are new functions to access and write to a specific table field.
2550      This is for hackers, and maybe for the org-babel people.
2552      #+begin_example
2553      org-table-get
2554      org-table-put
2555      org-table-current-line
2556      org-table-goto-line
2557      #+end_example
2559 **** Archiving: Allow to reverse order in target node
2561      The new option =org-archive-reversed-order= allows to have
2562      archived entries inserted in a last-on-top fashion in the target
2563      node.
2565      This was requested by Tom.
2567 **** Org-reveal: Double prefix arg shows the entire subtree of the parent
2569      This can help to get out of an inconsistent state produced for
2570      example by viewing from the agenda.
2572      This was a request by Matt Lundin.
2574 * License
2576   This file is part of GNU Emacs.
2578   GNU Emacs is free software: you can redistribute it and/or modify
2579   it under the terms of the GNU General Public License as published by
2580   the Free Software Foundation, either version 3 of the License, or
2581   (at your option) any later version.
2583   GNU Emacs is distributed in the hope that it will be useful,
2584   but WITHOUT ANY WARRANTY; without even the implied warranty of
2585   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2586   GNU General Public License for more details.
2588   You should have received a copy of the GNU General Public License
2589   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.