Neato. Seems to work. Thanks.
--- Vladimir
------------------------------------------------------------------------
Vladimir G. Ivanovic
http://leonora.org/~vladimir
2770 Cowper St. vladimir(a)acm.org
Palo Alto, CA 94306-2447 +1 650 678 8014
The lyfe so short, the craft so long to learne. -- Chaucer
>>>> "SM" == Sean MacLennan
<seanm(a)seanm.ca> writes:
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/