There are two headline new features in this release:
- A new advanced customization user interface which allows many tweaks to be made to beorg which before required an init.org file
- Greater flexibility over how .org files are formatted with respect to blank lines before a new headline
This releases allows beorg to be more flexible in how .org files are formatted. By default beorg will now add a blank line above each headline, but respect manually edited files that have more or less blank lines above headlines.
There are two new Scheme variables, which you can customize in your init.org file, or using the new customization UI:
#+begin_src scheme
(defvar beorg-auto-lines-before-headlines #f
"If #t then beorg will automatically add newlines before headlines, depending on the value of beorg-newlines-before-headlines. If #f then beorg will respect the number of lines before headlines already in a file, and only use beorg-newlines-before-headlines for new items.")
(defvar beorg-newlines-before-headlines '(1)
"The first item in this list is the number of blank lines to add before a first level headline, the second item the number of blank lines before a second level heading, etc. The last item in the list is the number of blank lines to add before all other headlines.")
#+end_src
would auto-format files (i.e. disregard manually entered blank lines between headlines) and automatically add 3 blank lines before a first level headlines, 2 blank lines before a second level headline, 1 blank line before a third level headline and 0 blank lines for all other levels.
Matthew Kennard
There are two headline new features in this release:
- A new advanced customization user interface which allows many tweaks to be made to beorg which before required an init.org file
- Greater flexibility over how .org files are formatted with respect to blank lines before a new headline
This releases allows beorg to be more flexible in how .org files are formatted. By default beorg will now add a blank line above each headline, but respect manually edited files that have more or less blank lines above headlines.
There are two new Scheme variables, which you can customize in your init.org file, or using the new customization UI:
The following in your init.org...
would auto-format files (i.e. disregard manually entered blank lines between headlines) and automatically add 3 blank lines before a first level headlines, 2 blank lines before a second level headline, 1 blank line before a third level headline and 0 blank lines for all other levels.