summaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorKyle Meyer <meyerkya@gmail.com>2013-07-22 11:54:51 -0400
committerKyle Meyer <meyerkya@gmail.com>2013-07-22 12:02:12 -0400
commit2aadaae1e40c2df4d4493325141ecf893fe84346 (patch)
treeca13a8c66f524df0c6ae9f5b2e800586c3275754 /init
parent20c203ed42ce8d9868e356974d4777d362dbf0d0 (diff)
downloademacs.d-2aadaae1e40c2df4d4493325141ecf893fe84346.tar.gz
Switch message-mode to orgstruct++
orgstruct++ has more complete formatting and list functionality (such as the ability to create a new list element from the previous element even if it is multi-line).
Diffstat (limited to 'init')
-rw-r--r--init/km-gnus.el3
-rw-r--r--init/km-org.el2
2 files changed, 3 insertions, 2 deletions
diff --git a/init/km-gnus.el b/init/km-gnus.el
index 514323e..7f7a2b0 100644
--- a/init/km-gnus.el
+++ b/init/km-gnus.el
@@ -57,8 +57,7 @@
(add-hook 'message-mode-hook
'(lambda ()
- (flyspell-mode 1)
- (orgstruct-mode 1)))
+ (flyspell-mode 1)))
(setq gnus-confirm-mail-reply-to-news t)
diff --git a/init/km-org.el b/init/km-org.el
index 8ab1b93..f356fd1 100644
--- a/init/km-org.el
+++ b/init/km-org.el
@@ -145,3 +145,5 @@
(setq org-use-speed-commands t)
(setq org-catch-invisible-edits 'error)
+
+(add-hook 'message-mode-hook 'turn-on-orgstruct++)