[Remind-Fans] announcement: Wyrd 0.1.0

Paul Visscher paulv at canonical.org
Mon May 2 17:57:37 EDT 2005


Daniel Martins [danielemc at gmail.com] said:
> BTW If there is someone using remind integrated with Emacs please let me 
> know (send me a private mail) 

If I understand correctly, you want to replace

# Used by GNU Emacs
# Local Variables:
# auto-fill-mode: 0
# shell-script-mode: t 
# End:

in your .reminders with some elispy goodness in your .emacs file. Try
this untested elisp.

(setq auto-mode-alist 
      (cons '("\\.reminders$" . shell-script-mode) auto-mode-alist))

(add-hook 'sh-mode-hook 
      (lambda ()
        (auto-fill-mode nil)))

Note that this will turn off auto-fill-mode for every file that gets
opened in shell-script-mode.

--paulv



More information about the Remind-fans mailing list