ORG-NEWS 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945
  1. ORG NEWS -*- org -*-
  2. * Incompatible changes
  3. ** Emacs 21 support has been dropped
  4. :PROPERTIES:
  5. :OrgVersion: 7.01
  6. :END:
  7. Do not use Org mode 7.xx with Emacs 21, use [[http://orgmode.org/org-6.36c.zip][version 6.36c]] instead.
  8. ** XEmacs support requires the XEmacs development version
  9. :PROPERTIES:
  10. :OrgVersion: 7.01
  11. :END:
  12. To use Org mode 7.xx with XEmacs, you need to run the developer
  13. version of XEmacs. We were about to drop XEmacs support entirely,
  14. but Michael Sperber stepped in and made changes to XEmacs that made
  15. it easier to keep the support. Thanks to Michael for this
  16. last-minute save.
  17. ** New keys for TODO sparse trees
  18. :PROPERTIES:
  19. :OrgVersion: 7.01
  20. :END:
  21. The key =C-c C-v= is now reserved for Org Babel action. TODO sparse
  22. trees can still be made with =C-c / t= (all not-done states) and =C-c /
  23. T= (specific states).
  24. ** The Agenda =org-agenda-ndays= is now obsolete
  25. :PROPERTIES:
  26. :OrgVersion: 7.4
  27. :END:
  28. The variable =org-agenda-ndays= is obsolete - please use
  29. =org-agenda-span= instead.
  30. Thanks to Julien Danjou for this.
  31. ** Changes to the intended use of =org-export-latex-classes=
  32. :PROPERTIES:
  33. :OrgVersion: 6.35
  34. :END:
  35. So far this variable has been used to specify the complete header of the
  36. LaTeX document, including all the =\usepackage= calls necessary for the
  37. document. This setup makes it difficult to maintain the list of
  38. packages that Org itself would like to call, for example for the special
  39. symbol support it needs.
  40. First of all, you can *opt out of this change* in the following way: You
  41. can say: /I want to have full control over headers, and I will take
  42. responsibility to include the packages Org needs/. If that is what you
  43. want, add this to your configuration and skip the rest of this section
  44. (except maybe for the description of the =[EXTRA]= place holder):
  45. #+begin_src emacs-lisp
  46. (setq org-export-latex-default-packages-alist nil
  47. org-export-latex-packages-alist nil)
  48. #+end_src
  49. /Continue to read here if you want to go along with the modified setup./
  50. There are now two variables that should be used to list the LaTeX
  51. packages that need to be included in all classes. The header definition
  52. in =org-export-latex-classes= should then not contain the corresponding
  53. =\usepackage= calls (see below).
  54. The two new variables are:
  55. 1. =org-export-latex-default-packages-alist= :: This is the variable
  56. where Org-mode itself puts the packages it needs. Normally you
  57. should not change this variable. The only reason to change it
  58. anyway is when one of these packages causes a conflict with another
  59. package you want to use. Then you can remove that packages and
  60. hope that you are not using Org-mode functionality that needs it.
  61. 2. =org-export-latex-packages-alist= :: This is the variable where you
  62. can put the packages that you'd like to use across all classes.
  63. The sequence how these customizations will show up in the LaTeX
  64. document are:
  65. 1. Header from =org-export-latex-classes=
  66. 2. =org-export-latex-default-packages-alist=
  67. 3. =org-export-latex-packages-alist=
  68. 4. Buffer-specific things set with =#+LaTeX_HEADER:=
  69. If you want more control about which segment is placed where, or if you
  70. want, for a specific class, have full control over the header and
  71. exclude some of the automatic building blocks, you can put the following
  72. macro-like place holders into the header:
  73. #+begin_example
  74. [DEFAULT-PACKAGES] \usepackage statements for default packages
  75. [NO-DEFAULT-PACKAGES] do not include any of the default packages
  76. [PACKAGES] \usepackage statements for packages
  77. [NO-PACKAGES] do not include the packages
  78. [EXTRA] the stuff from #+LaTeX_HEADER
  79. [NO-EXTRA] do not include #+LaTeX_HEADER stuff
  80. #+end_example
  81. If you have currently customized =org-export-latex-classes=, you should
  82. revise that customization and remove any package calls that are covered
  83. by =org-export-latex-default-packages-alist=. This applies to the
  84. following packages:
  85. - inputenc
  86. - fontenc
  87. - fixltx2e
  88. - graphicx
  89. - longtable
  90. - float
  91. - wrapfig
  92. - soul
  93. - t1enc
  94. - textcomp
  95. - marvosym
  96. - wasysym
  97. - latexsym
  98. - amssymb
  99. - hyperref
  100. If one of these packages creates a conflict with another package you are
  101. using, you can remove it from =org-export-latex-default-packages-alist=.
  102. But then you risk that some of the advertised export features of Org
  103. will not work properly.
  104. You can also consider moving packages that you use in all classes to
  105. =org-export-latex-packages-alist=. If necessary, put the place holders
  106. so that the packages get loaded in the right sequence. As said above,
  107. for backward compatibility, if you omit the place holders, all the
  108. variables will dump their content at the end of the header.
  109. ** The constant =org-html-entities= is obsolete
  110. :PROPERTIES:
  111. :OrgVersion: 6.35
  112. :END:
  113. Its content is now part of the new constant =org-entities=, which is
  114. defined in the file org-entities.el. =org-html-entities= was an internal
  115. variable, but it is possible that some users did write code using it.
  116. ** `org-bbdb-anniversary-format-alist' has changed
  117. :PROPERTIES:
  118. :OrgVersion: 7.5
  119. :END:
  120. Please check the docstring and update your settings accordingly.
  121. ** Deleted =org-mode-p=
  122. :PROPERTIES:
  123. :OrgVersion: 7.8
  124. :END:
  125. This function has been deleted: please update your code.
  126. * Important new features
  127. ** New Org to ODT exporter
  128. :PROPERTIES:
  129. :OrgVersion: 7.8
  130. :END:
  131. Jambunathan's Org to ODT exporter is now part of Org.
  132. To use it, it `C-c C-e o' in an Org file. See the documentation for more
  133. information on how to customize it.
  134. ** org-capture.el is now the default capture system
  135. :PROPERTIES:
  136. :OrgVersion: 7.01
  137. :END:
  138. This replaces the earlier system org-remember. The manual only describes
  139. org-capture, but for people who prefer to continue to use org-remember,
  140. we keep a static copy of the former manual section [[http://orgmode.org/org-remember.pdf][chapter about
  141. remember]].
  142. The new system has a technically cleaner implementation and more
  143. possibilities for capturing different types of data. See [[http://thread.gmane.org/gmane.emacs.orgmode/26441/focus%3D26441][Carsten's
  144. announcement]] for more details.
  145. To switch over to the new system:
  146. 1. Run
  147. : M-x org-capture-import-remember-templates RET
  148. to get a translated version of your remember templates into the
  149. new variable =org-capture-templates=. This will "mostly" work,
  150. but maybe not for all cases. At least it will give you a good
  151. place to modify your templates. After running this command,
  152. enter the customize buffer for this variable with
  153. : M-x customize-variable RET org-capture-templates RET
  154. and convince yourself that everything is OK. Then save the
  155. customization.
  156. 2. Bind the command =org-capture= to a key, similar to what you did
  157. with org-remember:
  158. : (define-key global-map "\C-cc" 'org-capture)
  159. If your fingers prefer =C-c r=, you can also use this key once
  160. you have decided to move over completely to the new
  161. implementation. During a test time, there is nothing wrong
  162. with using both system in parallel.
  163. * New libraries
  164. ** New Org libraries
  165. *** org-eshell.el (Konrad Hinsen)
  166. :PROPERTIES:
  167. :OrgVersion: 7.8
  168. :END:
  169. Implement links to eshell buffers.
  170. *** org-special-blocks (Carsten Dominik)
  171. :PROPERTIES:
  172. :OrgVersion: 7.8
  173. :END:
  174. This package generalizes the #+begin_foo and #+end_foo tokens.
  175. To use, put the following in your init file:
  176. #+BEGIN_EXAMPLE
  177. (require 'org-special-blocks)
  178. #+END_EXAMPLE
  179. The tokens #+begin_center, #+begin_verse, etc. existed previously. This
  180. package generalizes them (at least for the LaTeX and html exporters). When
  181. a #+begin_foo token is encountered by the LaTeX exporter, it is expanded
  182. into \begin{foo}. The text inside the environment is not protected, as
  183. text inside environments generally is. When #+begin_foo is encountered by
  184. the html exporter, a div with class foo is inserted into the HTML file. It
  185. is up to the user to add this class to his or her stylesheet if this div is
  186. to mean anything.
  187. *** org-taskjuggler.el (Christian Egli)
  188. :PROPERTIES:
  189. :OrgVersion: 7.01
  190. :END:
  191. Christian Egli's /org-taskjuggler.el/ module is now part of Org. He
  192. also wrote a [[http://orgmode.org/worg/org-tutorials/org-taskjuggler.php][tutorial]] for it.
  193. *** org-ctags.el (Paul Sexton)
  194. :PROPERTIES:
  195. :OrgVersion: 6.34
  196. :END:
  197. Targets like =<<my target>>= can now be found by Emacs' etag
  198. functionality, and Org-mode links can be used to to link to etags, also
  199. in non-Org-mode files. For details, see the file /org-ctags.el/.
  200. This feature uses a new hook =org-open-link-functions= which will call
  201. function to do something special with text links.
  202. Thanks to Paul Sexton for this contribution.
  203. *** org-docview.el (Jan Böcker)
  204. :PROPERTIES:
  205. :OrgVersion: 6.34
  206. :END:
  207. This new module allows links to various file types using docview, where
  208. Emacs displays images of document pages. Docview link types can point
  209. to a specific page in a document, for example to page 131 of the
  210. Org-mode manual:
  211. : [[docview:~/.elisp/org/doc/org.pdf::131][Org-Mode Manual]]
  212. Thanks to Jan Böcker for this contribution.
  213. ** New Babel libraries
  214. - ob-picolisp.el (Thorsten Jolitz)
  215. - ob-fortran.el (Sergey Litvinov)
  216. - ob-shen.el (Eric Schulte)
  217. - ob-maxima.el (Eric S Fraga)
  218. - ob-java.el (Eric Schulte)
  219. - ob-lilypond.el (Martyn Jago)
  220. - ob-awk.el (Eric Schulte)
  221. * Other new features and various enhancements
  222. ** Hyperlinks
  223. *** Org-Bibtex -- major improvements
  224. :PROPERTIES:
  225. :OrgVersion: 7.6
  226. :END:
  227. Provides support for managing bibtex bibliographical references
  228. data in headline properties. Each headline corresponds to a
  229. single reference and the relevant bibliographic meta-data is
  230. stored in headline properties, leaving the body of the headline
  231. free to hold notes and comments. Org-bibtex is aware of all
  232. standard bibtex reference types and fields.
  233. The key new functions are
  234. - org-bibtex-check :: queries the user to flesh out all required
  235. (and with prefix argument optional) bibtex fields available
  236. for the specific reference =type= of the current headline.
  237. - org-bibtex-create :: Create a new entry at the given level,
  238. using org-bibtex-check to flesh out the relevant fields.
  239. - org-bibtex-yank :: Yank a bibtex entry on the kill ring as a
  240. formatted Org-mode headline into the current buffer
  241. - org-bibtex-export-to-kill-ring :: Export the current headline
  242. to the kill ring as a formatted bibtex entry.
  243. *** org-gnus.el now allows link creation from messages
  244. :PROPERTIES:
  245. :OrgVersion: 7.5
  246. :END:
  247. You can now create links from messages. This is particularily
  248. useful when the user wants to stored messages that he sends, for
  249. later check. Thanks to Ulf Stegemann for the patch.
  250. *** Modified link escaping
  251. :PROPERTIES:
  252. :OrgVersion: 7.5
  253. :END:
  254. David Maus worked on `org-link-escape'. See [[http://article.gmane.org/gmane.emacs.orgmode/37888][his message]]:
  255. : Percent escaping is used in Org mode to escape certain characters
  256. : in links that would either break the parser (e.g. square brackets
  257. : in link target oder description) or are not allowed to appear in
  258. : a particular link type (e.g. non-ascii characters in a http:
  259. : link).
  260. :
  261. : With this change in place Org will apply percent escaping and
  262. : unescaping more consistently especially for non-ascii characters.
  263. : Additionally some of the outstanding bugs or glitches concerning
  264. : percent escaped links are solved.
  265. Thanks a lot to David for this work.
  266. *** Make =org-store-link= point to directory in a dired buffer
  267. :PROPERTIES:
  268. :OrgVersion: 6.35
  269. :END:
  270. When, in a dired buffer, the cursor is not in a line listing a
  271. file, `org-store-link' will store a link to the directory.
  272. Patch by Stephen Eglen.
  273. *** Allow regexps in =org-file-apps= to capture link parameters
  274. :PROPERTIES:
  275. :OrgVersion: 6.35
  276. :END:
  277. The way extension regexps in =org-file-apps= are handled has
  278. changed. Instead of matching against the file name, the regexps
  279. are now matched against the whole link, and you can use grouping
  280. to extract link parameters which you can then use in a command
  281. string to be executed.
  282. For example, to allow linking to PDF files using the syntax
  283. =file:/doc.pdf::<page number>=, you can add the following entry to
  284. org-file-apps:
  285. #+begin_example
  286. Extension: \.pdf::\([0-9]+\)\'
  287. Command: evince "%s" -p %1
  288. #+end_example
  289. Thanks to Jan Böcker for a patch to this effect.
  290. ** Dates and time
  291. *** Allow relative time when scheduling/adding a deadline
  292. :PROPERTIES:
  293. :OrgVersion: 7.7
  294. :END:
  295. You can now use relative duration strings like "-2d" or "++3w"
  296. when calling =org-schedule= or =org-deadline=: it will schedule
  297. (or set the deadline for) the item respectively two days before
  298. today and three weeks after the current timestamp, if any.
  299. You can use this programmatically: =(org-schedule nil "+2d")=
  300. will work on the current entry.
  301. You can also use this while (bulk-)rescheduling and
  302. (bulk-)resetting the deadline of (several) items from the agenda.
  303. Thanks to Memnon Anon for a heads up about this!
  304. *** American-style dates are now understood by =org-read-date=
  305. :PROPERTIES:
  306. :OrgVersion: 6.35
  307. :END:
  308. So when you are prompted for a date, you can now answer like this
  309. #+begin_example
  310. 2/5/3 --> 2003-02-05
  311. 2/5 --> <CURRENT-YEAR>-02-05
  312. #+end_example
  313. ** Agenda
  314. *** =org-agenda-custom-commands= has a default value
  315. :PROPERTIES:
  316. :OrgVersion: 7.8
  317. :END:
  318. This option used to be `nil' by default. This now has a default
  319. value, displaying an agenda and all TODOs. See the docstring for
  320. details. Thanks to Carsten for this.
  321. *** Improved filtering through =org-agenda-to-appt=
  322. :PROPERTIES:
  323. :OrgVersion: 7.8
  324. :END:
  325. The new function allows the user to refine the scope of entries
  326. to pass to =org-agenda-get-day-entries= and allows to filter out
  327. entries using a function.
  328. Thanks to Peter Münster for raising a related issue and to
  329. Tassilo Horn for this idea. Also thanks to Peter Münster for
  330. [[git:68ffb7a7][fixing a small bug]] in the final implementation.
  331. *** Allow ap/pm times in agenda time grid
  332. :PROPERTIES:
  333. :OrgVersion: 7.4
  334. :END:
  335. Times in the agenda can now be displayed in am/pm format. See the new
  336. variable =org-agenda-timegrid-use-ampm=. Thanks to C. A. Webber for
  337. a patch to this effect.
  338. *** Agenda: Added a bulk "scattering" command
  339. :PROPERTIES:
  340. :OrgVersion: 7.4
  341. :END:
  342. =B S= in the agenda buffer will cause tasks to be rescheduled a random
  343. number of days into the future, with 7 as the default. This is useful
  344. if you've got a ton of tasks scheduled for today, you realize you'll
  345. never deal with them all, and you just want them to be distributed
  346. across the next N days. When called with a prefix arg, rescheduling
  347. will avoid weekend days.
  348. Thanks to John Wiegley for this.
  349. ** Exporting
  350. *** Simplification of org-export-html-preamble/postamble
  351. :PROPERTIES:
  352. :OrgVersion: 7.5
  353. :END:
  354. When set to `t', export the preamble/postamble as usual, honoring the
  355. =org-export-email/author/creator-info= variables.
  356. When set to a formatting string, insert this string. See the docstring
  357. of these variable for details about available %-sequences.
  358. You can set =:html-preamble= in publishing project in the same way: `t'
  359. means to honor =:email/creator/author-info=, and a formatting string
  360. will insert a string.
  361. *** New exporters to Latin-1 and UTF-8
  362. :PROPERTIES:
  363. :OrgVersion: 6.35
  364. :END:
  365. While Ulf Stegemann was going through the entities list to improve the
  366. LaTeX export, he had the great idea to provide representations for many
  367. of the entities in Latin-1, and for all of them in UTF-8. This means
  368. that we can now export files rich in special symbols to Latin-1 and to
  369. UTF-8 files. These new exporters can be reached with the commands =C-c
  370. C-e n= and =C-c C-e u=, respectively.
  371. When there is no representation for a given symbol in the targeted
  372. coding system, you can choose to keep the TeX-macro-like
  373. representation, or to get an "explanatory" representation. For
  374. example, =\simeq= could be represented as "[approx. equal to]". Please
  375. use the variable =org-entities-ascii-explanatory= to state your
  376. preference.
  377. *** HTML export: Add class to outline containers using property
  378. :PROPERTIES:
  379. :OrgVersion: 6.35
  380. :END:
  381. The =HTML_CONTAINER_CLASS= property can now be used to add a class name
  382. to the outline container of a node in HTML export.
  383. *** Throw an error when creating an image from a LaTeX snippet fails
  384. :PROPERTIES:
  385. :OrgVersion: 6.35
  386. :END:
  387. This behavior can be configured with the new option variable
  388. =org-format-latex-signal-error=.
  389. *** Support for creating BEAMER presentations from Org-mode documents
  390. :PROPERTIES:
  391. :OrgVersion: 6.34
  392. :END:
  393. Org-mode documents or subtrees can now be converted directly in to
  394. BEAMER presentation. Turning a tree into a simple presentations is
  395. straight forward, and there is also quite some support to make richer
  396. presentations as well. See the [[http://orgmode.org/manual/Beamer-class-export.html#Beamer-class-export][BEAMER section]] in the manual for more
  397. details.
  398. Thanks to everyone who has contributed to the discussion about BEAMER
  399. support and how it should work. This was a great example for how this
  400. community can achieve a much better result than any individual could.
  401. ** Refiling
  402. *** Refile targets can now be cached
  403. :PROPERTIES:
  404. :OrgVersion: 7.01
  405. :END:
  406. You can turn on caching of refile targets by setting the variable
  407. =org-refile-use-cache=. This should speed up refiling if you have many
  408. eligible targets in many files. If you need to update the cache
  409. because Org misses a newly created entry or still offers a deleted one,
  410. press =C-0 C-c C-w=.
  411. *** New logging support for refiling
  412. :PROPERTIES:
  413. :OrgVersion: 6.35
  414. :END:
  415. Whenever you refile an item, a time stamp and even a note can be added
  416. to this entry. For details, see the new option =org-log-refile=.
  417. Thanks to Charles Cave for this idea.
  418. ** Completion
  419. *** In-buffer completion is now done using John Wiegleys pcomplete.el
  420. :PROPERTIES:
  421. :OrgVersion: 7.4
  422. :END:
  423. Thanks to John Wiegley for much of this code.
  424. ** Tables
  425. *** New command =org-table-transpose-table-at-point=
  426. :PROPERTIES:
  427. :OrgVersion: 7.8
  428. :END:
  429. See the docstring. This hack from Juan Pechiar is now part of Org's
  430. core. Thanks to Juan!
  431. *** Display field's coordinates when editing it with =C-c `=
  432. :PROPERTIES:
  433. :OrgVersion: 7.7
  434. :END:
  435. When editing a field with =C-c `=, the field's coordinate will the
  436. displayed in the buffer.
  437. Thanks to Michael Brand for a patch to this effect.
  438. *** Spreadsheet computation of durations and time values
  439. :PROPERTIES:
  440. :OrgVersion: 7.6
  441. :END:
  442. If you want to compute time values use the =T= flag, either in Calc
  443. formulas or Elisp formulas:
  444. | Task 1 | Task 2 | Total |
  445. |--------+--------+---------|
  446. | 35:00 | 35:00 | 1:10:00 |
  447. #+TBLFM: @2$3=$1+$2;T
  448. Values must be of the form =[HH:]MM:SS=, where hours are optional.
  449. Thanks to Martin Halder, Eric Schulte and Carsten for code and feedback
  450. on this.
  451. *** Implement formulas applying to field ranges
  452. :PROPERTIES:
  453. :OrgVersion: 7.5
  454. :END:
  455. Carsten implemented this field-ranges formulas.
  456. : A frequently requested feature for tables has been to be able to define
  457. : row formulas in a way similar to column formulas. The patch below allows
  458. : things like
  459. :
  460. : @3=
  461. : @2$2..@5$7=
  462. : @I$2..@II$4=
  463. :
  464. : as the left hand side for table formulas in order to write a formula that
  465. : is valid for an entire column or for a rectangular section in a
  466. : table.
  467. Thanks a lot to Carsten for this.
  468. *** Sending radio tables from org buffers is now allowed
  469. :PROPERTIES:
  470. :OrgVersion: 7.4
  471. :END:
  472. Org radio tables can no also be sent inside Org buffers. Also, there
  473. is a new hook which get called after a table has been sent.
  474. Thanks to Seweryn Kokot.
  475. ** Lists
  476. *** Improved handling of lists
  477. :PROPERTIES:
  478. :OrgVersion: 7.5
  479. :END:
  480. Nicolas Goaziou extended and improved the way Org handles lists.
  481. 1. Indentation of text determines again end of items in lists. So, some
  482. text less indented than the previous item doesn't close the whole
  483. list anymore, only all items more indented than it.
  484. 2. Alphabetical bullets are implemented, through the use of the
  485. variable `org-alphabetical-lists'. This also adds alphabetical
  486. counters like [@c] or [@W].
  487. 3. Lists can now safely contain drawers, inline tasks, or various
  488. blocks, themselves containing lists. Two variables are controlling
  489. this: `org-list-forbidden-blocks', and `org-list-export-context'.
  490. 4. Improve `newline-and-indent' (C-j): used in an item, it will keep
  491. text from moving at column 0. This allows to split text and make
  492. paragraphs and still not break the list.
  493. 5. Improve `org-toggle-item' (C-c -): used on a region with standard
  494. text, it will change the region into one item. With a prefix
  495. argument, it will fallback to the previous behavior and make every
  496. line in region an item. It permits to easily integrate paragraphs
  497. inside a list.
  498. 6. `fill-paragraph' (M-q) now understands lists. It can freely be used
  499. inside items, or on text just after a list, even with no blank line
  500. around, without breaking list structure.
  501. Thanks a lot to Nicolas for all this!
  502. ** Inline display of linked images
  503. :PROPERTIES:
  504. :OrgVersion: 6.36
  505. :END:
  506. Images can now be displayed inline. The key C-c C-x C-v does toggle the
  507. display of such images. Note that only image links that have no
  508. description part will be inlined.
  509. ** Implement offsets for ordered lists
  510. :PROPERTIES:
  511. :OrgVersion: 6.36
  512. :END:
  513. If you want to start an ordered plain list with a number different from
  514. 1, you can now do it like this:
  515. : 1. [@start:12] will star a lit a number 12
  516. ** Babel: code block body expansion for table and preview
  517. :PROPERTIES:
  518. :OrgVersion: 6.36
  519. :END:
  520. In org-babel, code is "expanded" prior to evaluation. I.e. the code that
  521. is actually evaluated comprises the code block contents, augmented with
  522. the extra code which assigns the referenced data to variables. It is now
  523. possible to preview expanded contents, and also to expand code during
  524. during tangling. This expansion takes into account all header arguments,
  525. and variables.
  526. A new key-binding `C-c M-b p' bound to `org-babel-expand-src-block' can
  527. be used from inside of a source code block to preview its expanded
  528. contents (which can be very useful for debugging). tangling
  529. The expanded body can now be tangled, this includes variable values
  530. which may be the results of other source-code blocks, or stored in
  531. headline properties or tables. One possible use for this is to allow
  532. those using org-babel for their emacs initialization to store values
  533. (e.g. usernames, passwords, etc...) in headline properties or in tables.
  534. Org-babel now supports three new header arguments, and new default
  535. behavior for handling horizontal lines in tables (hlines), column names,
  536. and rownames across all languages.
  537. ** Editing Convenience and Appearance
  538. *** New command =org-copy-visible= (=C-c C-x v=)
  539. :PROPERTIES:
  540. :OrgVersion: 7.7
  541. :END:
  542. This command will copy the visible text in the region into the kill
  543. ring. Thanks to Florian Beck for this function and to Carsten for
  544. adding it to org.el and documenting it!
  545. *** Make it possible to protect hidden subtrees from being killed by =C-k=
  546. :PROPERTIES:
  547. :OrgVersion: 7.01
  548. :END:
  549. See the new variable =org-ctrl-k-protect-subtree=. This was a request
  550. by Scott Otterson.
  551. *** Implement pretty display of entities, sub-, and superscripts.
  552. :PROPERTIES:
  553. :OrgVersion: 7.01
  554. :END:
  555. The command =C-c C-x \= toggles the display of Org's special entities
  556. like =\alpha= as pretty unicode characters. Also, sub and superscripts
  557. are displayed in a pretty way (raised/lower display, in a smaller
  558. font). If you want to exclude sub- and superscripts, see the variable
  559. =org-pretty-entities-include-sub-superscripts=.
  560. Thanks to Eric Schulte and Ulf Stegeman for making this possible.
  561. *** New faces for title, date, author and email address lines
  562. :PROPERTIES:
  563. :OrgVersion: 6.35
  564. :END:
  565. The keywords in these lines are now dimmed out, and the title is
  566. displayed in a larger font, and a special font is also used for author,
  567. date, and email information. This is implemented by the following new
  568. faces:
  569. =org-document-title=
  570. =org-document-info=
  571. =org-document-info-keyword=
  572. In addition, the variable =org-hidden-keywords= can be used to make the
  573. corresponding keywords disappear.
  574. Thanks to Dan Davison for this feature.
  575. *** Simpler way to specify faces for tags and todo keywords
  576. :PROPERTIES:
  577. :OrgVersion: 6.35
  578. :END:
  579. The variables =org-todo-keyword-faces=, =org-tag-faces=, and
  580. =org-priority-faces= now accept simple color names as specifications.
  581. The colors will be used as either foreground or background color for
  582. the corresponding keyword. See also the variable
  583. =org-faces-easy-properties=, which governs which face property is
  584. affected by this setting.
  585. This is really a great simplification for setting keyword faces. The
  586. change is based on an idea and patch by Ryan Thompson.
  587. *** <N> in tables now means fixed width, not maximum width
  588. :PROPERTIES:
  589. :OrgVersion: 6.35
  590. :END:
  591. Requested by Michael Brand.
  592. *** Better level cycling function
  593. :PROPERTIES:
  594. :OrgVersion: 6.35
  595. :END:
  596. =TAB= in an empty headline cycles the level of that headline through
  597. likely states. Ryan Thompson implemented an improved version of this
  598. function, which does not depend upon when exactly this command is used.
  599. Thanks to Ryan for this improvement.
  600. *** Adaptive filling
  601. :PROPERTIES:
  602. :OrgVersion: 6.35
  603. :END:
  604. For paragraph text, =org-adaptive-fill-function= did not handle the
  605. base case of regular text which needed to be filled. This is now
  606. fixed. Among other things, it allows email-style ">" comments to be
  607. filled correctly.
  608. Thanks to Dan Hackney for this patch.
  609. *** `org-reveal' (=C-c C-r=) also decrypts encrypted entries (org-crypt.el)
  610. :PROPERTIES:
  611. :OrgVersion: 6.35
  612. :END:
  613. Thanks to Richard Riley for triggering this change.
  614. *** Better automatic letter selection for TODO keywords
  615. :PROPERTIES:
  616. :OrgVersion: 6.35
  617. :END:
  618. When all first letters of keywords have been used, Org now assigns more
  619. meaningful characters based on the keywords.
  620. Thanks to Mikael Fornius for this patch.
  621. ** Clocking
  622. *** Clock: Allow synchronous update of timestamps in CLOCK log
  623. :PROPERTIES:
  624. :OrgVersion: 7.7
  625. :END:
  626. Using =S-M-<up/down>= on CLOCK log timestamps will increase/decrease
  627. the two timestamps on this line so that duration will keep the same.
  628. Note that duration can still be slightly modified in case a timestamp
  629. needs some rounding.
  630. Thanks to Rainer Stengele for this idea.
  631. *** Localized clock tables
  632. :PROPERTIES:
  633. :OrgVersion: 7.5
  634. :END:
  635. Clock tables now support a new new =:lang= parameter, allowing the user
  636. to customize the localization of the table headers. See the variable
  637. =org-clock-clocktable-language-setup= which controls available
  638. translated strings.
  639. *** Show clock overruns in mode line
  640. :PROPERTIES:
  641. :OrgVersion: 6.35
  642. :END:
  643. When clocking an item with a planned effort, overrunning the planned
  644. time is now made visible in the mode line, for example using the new
  645. face =org-mode-line-clock-overrun=, or by adding an extra string given
  646. by =org-task-overrun-text=.
  647. Thanks to Richard Riley for a patch to this effect.
  648. *** Clock reports can now include the running, incomplete clock
  649. :PROPERTIES:
  650. :OrgVersion: 6.35
  651. :END:
  652. If you have a clock running, and the entry being clocked falls into the
  653. scope when creating a clock table, the time so far spent can be added
  654. to the total. This behavior depends on the setting of
  655. =org-clock-report-include-clocking-task=. The default is =nil=.
  656. Thanks to Bernt Hansen for this useful addition.
  657. ** Misc
  658. *** Improvements with inline tasks and indentation
  659. :PROPERTIES:
  660. :OrgVersion: 7.4
  661. :END:
  662. There is now a configurable way on how to export inline tasks. See the
  663. new variable =org-inlinetask-export-templates=.
  664. Thanks to Nicolas Goaziou for coding these changes.
  665. *** A property value of "nil" now means to unset a property
  666. :PROPERTIES:
  667. :OrgVersion: 7.01
  668. :END:
  669. This can be useful in particular with property inheritance, if some
  670. upper level has the property, and some grandchild of it would like to
  671. have the default settings (i.e. not overruled by a property) back.
  672. Thanks to Robert Goldman and Bernt Hansen for suggesting this change.
  673. *** New helper functions in org-table.el
  674. :PROPERTIES:
  675. :OrgVersion: 6.35
  676. :END:
  677. There are new functions to access and write to a specific table field.
  678. This is for hackers, and maybe for the org-babel people.
  679. #+begin_example
  680. org-table-get
  681. org-table-put
  682. org-table-current-line
  683. org-table-goto-line
  684. #+end_example
  685. *** Archiving: Allow to reverse order in target node
  686. :PROPERTIES:
  687. :OrgVersion: 6.35
  688. :END:
  689. The new option =org-archive-reversed-order= allows to have archived
  690. entries inserted in a last-on-top fashion in the target node.
  691. This was requested by Tom.
  692. *** Org-reveal: Double prefix arg shows the entire subtree of the parent
  693. :PROPERTIES:
  694. :OrgVersion: 6.35
  695. :END:
  696. This can help to get out of an inconsistent state produced for example
  697. by viewing from the agenda.
  698. This was a request by Matt Lundin.