emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Blank lines between bullet items
@ 2006-09-13 20:22 Ed Hirgelt
  2006-09-14 10:12 ` Carsten Dominik
  0 siblings, 1 reply; 2+ messages in thread
From: Ed Hirgelt @ 2006-09-13 20:22 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 1461 bytes --]

I find that I prefer a blank line between items in plain lists.
org-insert-item doesn't do that.  The following patch remedies that under
the control of a customization option.  Feel free to incorporate this into a
release if you think others would find it useful.


*** org.el    Fri Sep  8 11:49:10 2006
--- /c/hirged/recentElisp/org/org.el    Wed Sep 13 13:13:36 2006
***************
*** 463,468 ****
--- 463,474 ----
    :group 'org-plain-lists
    :type 'boolean)

+ (defcustom org-blank-before-bullet t
+   "Non-nil means to insert an extra blank before bullet items created with
+ \\[org-insert-item]."
+   :group 'org-plain-lists
+   :type 'boolean)
+
  (defcustom org-provide-checkbox-statistics t
    "Non-nil means, update checkbox statistics after insert and toggle.
  When this is set, checkbox statistics is updated each time you either
insert
***************
*** 3834,3840 ****
      (open-line 1))
         ((<= (point) eow)
      (beginning-of-line 1))
!        (t (newline)))
        (insert bul (if checkbox "[ ]" ""))
        (just-one-space)
        (setq pos (point))
--- 3840,3846 ----
      (open-line 1))
         ((<= (point) eow)
      (beginning-of-line 1))
!        (t (newline (if org-blank-before-bullet 2 1))))
        (insert bul (if checkbox "[ ]" ""))
        (just-one-space)
        (setq pos (point))


Thanks,
Ed


-- 
Ed Hirgelt

Discovery consists of seeing what everybody has seen
and thinking what nobody has thought.

[-- Attachment #1.2: Type: text/html, Size: 2266 bytes --]

[-- Attachment #2: Type: text/plain, Size: 149 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Blank lines between bullet items
  2006-09-13 20:22 Blank lines between bullet items Ed Hirgelt
@ 2006-09-14 10:12 ` Carsten Dominik
  0 siblings, 0 replies; 2+ messages in thread
From: Carsten Dominik @ 2006-09-14 10:12 UTC (permalink / raw)
  To: Ed Hirgelt; +Cc: emacs-orgmode


On Sep 13, 2006, at 22:22, Ed Hirgelt wrote:

> I find that I prefer a blank line between items in plain lists.  
> org-insert-item doesn't do that.  The following patch remedies that 
> under the control of a customization option.  Feel free to incorporate 
> this into a release if you think others would find it useful.

Thanks, this is a useful extension - I will take this, but modify so 
that you can have the same for headlines as well.

- Carsten

>
>
> *** org.el    Fri Sep  8 11:49:10 2006
> --- /c/hirged/recentElisp/org/org.el    Wed Sep 13 13:13:36 2006
> ***************
> *** 463,468 ****
> --- 463,474 ----
>     :group 'org-plain-lists
>     :type 'boolean)
>  
> + (defcustom org-blank-before-bullet t
> +   "Non-nil means to insert an extra blank before bullet items 
> created with
> + \\[org-insert-item]."
> +   :group 'org-plain-lists
> +   :type 'boolean)
>  +
>   (defcustom org-provide-checkbox-statistics t
>     "Non-nil means, update checkbox statistics after insert and toggle.
>   When this is set, checkbox statistics is updated each time you 
> either insert
> ***************
> *** 3834,3840 ****
>       (open-line 1))
>          ((<= (point) eow)
>       (beginning-of-line 1))
> !        (t (newline)))
>         (insert bul (if checkbox "[ ]" ""))
>         (just-one-space)
>         (setq pos (point))
> --- 3840,3846 ----
>       (open-line 1))
>          ((<= (point) eow)
>       (beginning-of-line 1))
> !        (t (newline (if org-blank-before-bullet 2 1))))
>         (insert bul (if checkbox "[ ]" ""))
>         (just-one-space)
>         (setq pos (point))
>
>
> Thanks,
> Ed
>
>
> -- 
> Ed Hirgelt
>
> Discovery consists of seeing what everybody has seen
> and thinking what nobody has thought.

--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-09-14 10:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-09-13 20:22 Blank lines between bullet items Ed Hirgelt
2006-09-14 10:12 ` Carsten Dominik

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).