On Wed, 20 Feb 2002, Jon Skeet <[EMAIL PROTECTED]> wrote: >> It's on its way into CVS (minus tabs ;-). > > You'll no doubt be nearly as pleased as I am to hear that someone's > come up with a slightly modified version of Eclipse which fixes this > to a very large extent.
Err, for me it is (custom-set-variables '(indent-tabs-mode nil)) in ~/.xemacs/custom.el and for cases like yours ~/elisp/untab.el: (defun untabify-buffer nil "Remove all tabs from a buffer" (interactive) (untabify (point-min) (point-max)) ) (defun untabify-buffer-and-save nil "Remove all tabs from a buffer and save" (interactive) (untabify-buffer) (save-buffer) ) 8-) Stefan -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
