Vladimir G. Ivanovic writes:
Is there any hope of getting really automatic word wrapping?
How about a simple hack like this?
(defun my-fill-paragraph ()
(interactive)
(self-insert-command 1)
(unless (eolp)
(fill-paragraph nil))
)
(define-key text-mode-map [32] 'my-fill-paragraph) ;; space
(define-key text-mode-map [9] 'my-fill-paragraph) ;; tab
It could also be added to punctuation.
Cheers,
Sean MacLennan
http://xemacs.seanm.ca/