all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Kevin Rodgers <kevin.d.rodgers@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: whitespace-cleanup + untabify?
Date: Sat, 14 Jun 2008 06:37:07 -0600	[thread overview]
Message-ID: <g30e1f$6ke$1@ger.gmane.org> (raw)
In-Reply-To: <fe97aa6c-f6db-4d58-9468-41b4e0677821@j22g2000hsf.googlegroups.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:
> 
> GNU Emacs 23.0.60.1 (i486-pc-linux-gnu, GTK+ Version 2.12.9)
> 
> I would really appreciate the help.

It's not documented, but because whitespace-global-mode is defined
via define-minor-mode there should be whitespace-global-mode-hook.
So perhaps something like this will work:

(add-hook 'whitespace-global-mode-hook
	  (lambda ()
	    (when whitespace-global-mode
	      (untabify (point-min) (point-max)))))

Alternatively, you could hook directly into find-file-hook,
write-file-functions, and kill-buffer-hook just like
whitespace-global-mode does.

-- 
Kevin Rodgers
Denver, Colorado, USA





  parent reply	other threads:[~2008-06-14 12:37 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-06-14 10:56 whitespace-cleanup + untabify? dsevilla
2008-06-14 12:02 ` Juanma Barranquero
2008-06-14 12:03 ` Nikolaj Schumacher
2008-06-14 12:37 ` Kevin Rodgers [this message]
2008-06-14 16:49   ` Nikolaj Schumacher
2008-06-14 13:43 ` Juanma
2008-06-14 15:02 ` Rupert Swarbrick
2008-06-14 15:10   ` dsevilla
2008-06-14 16:24 ` Lennart Borgman (gmail)
     [not found] ` <mailman.13261.1213458961.18990.help-gnu-emacs@gnu.org>
2008-06-15 20:05   ` dsevilla
     [not found] ` <mailman.13267.1213460678.18990.help-gnu-emacs@gnu.org>
2008-06-15 20:07   ` dsevilla
2008-06-15 20:53     ` Lennart Borgman (gmail)
2008-06-15 21:23       ` Nikolaj Schumacher
2008-06-15 21:32         ` Lennart Borgman (gmail)
2008-06-16  6:28           ` Thierry Volpiatto

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='g30e1f$6ke$1@ger.gmane.org' \
    --to=kevin.d.rodgers@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.