Re: [O] Org minor mode in mail-mode

2011-09-14 Thread Rene
Eric Abrahamsen eric at ericabrahamsen.net writes: Thanks for this hint! I had been advising fill-paragraph, this seems like a more comprehensive solution. What is strange though is that (turn-on-orgstruct++) messes up with the header separator (--text follows this line--) when calling M-q

Re: [O] Org minor mode in mail-mode

2011-09-09 Thread Rene
René jlr_0 at yahoo.com writes: Here is the the configuration I run (defun turn-on-full-org-mailing () (turn-on-orgstruct++) (turn-on-orgtbl) (load org-html-mail)) (add-hook 'mail-mode-hook 'turn-on-full-org-mailing) in order make use of Org minor mode (struct,

Re: [O] Org minor mode in mail-mode

2011-09-09 Thread Eric Abrahamsen
On Sat, Sep 10 2011, Rene wrote: René jlr_0 at yahoo.com writes: Here is the the configuration I run (defun turn-on-full-org-mailing () (turn-on-orgstruct++) (turn-on-orgtbl) (load org-html-mail)) (add-hook 'mail-mode-hook 'turn-on-full-org-mailing) in order

Re: [O] Org minor mode in mail-mode

2011-05-02 Thread Rene
Any idea on how to make use of org minor mode in mail-mode and still be able to fill-paragraph without impacting mail headers? The org minor modes set the local value of fill-paragraph-function to org-fill-paragraph. You can override this by adding a line to your hook function:

[O] Org minor mode in mail-mode

2011-03-09 Thread René
Here is the the configuration I run (defun turn-on-full-org-mailing () (turn-on-orgstruct++) (turn-on-orgtbl) (load org-html-mail)) (add-hook 'mail-mode-hook 'turn-on-full-org-mailing) in order make use of Org minor mode (struct, tbl) within mail-mode. Unfortunately with