help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: whitespace-cleanup + untabify?


From: Nikolaj Schumacher
Subject: Re: whitespace-cleanup + untabify?
Date: Sat, 14 Jun 2008 14:03:12 +0200
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (darwin)

"dsevilla@gmail.com" <dsevilla@gmail.com> wrote:

> I'm a no tab person. I would like my whitespace-cleanup command to
> also perform an untabify. How can this be done? I haven't found any
> option that connects untabify and whitespace-cleanup. I'm using:

Just write your own command:

(defun my-whitespace-cleanup ()
  (interactive)
  (whitespace-cleanup)
  (untabify (point-min) (point-max)))


regards,
Nikolaj Schumacher




reply via email to

[Prev in Thread] Current Thread [Next in Thread]