X-MimeOLE: Produced By Microsoft Exchange V6.5
Received: by onstor-exch02.onstor.net 
	id <01C7A3E3.8D03951F@onstor-exch02.onstor.net>; Thu, 31 May 2007 17:26:52 -0700
MIME-Version: 1.0
Content-Type: text/plain;
	charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
Content-class: urn:content-classes:message
Subject: RE: Whitespace checker utility
Date: Thu, 31 May 2007 17:26:52 -0700
Message-ID: <BB375AF679D4A34E9CA8DFA650E2B04E031D887B@onstor-exch02.onstor.net>
In-Reply-To: <20070531161157.20d2fb59@ripper.onstor.net>
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
Thread-Topic: Whitespace checker utility
Thread-Index: Acej2RXCtXn2Xo8KTvWMVevZTgmKewACjMTg
From: "Richard Beck" <IMCEAEX-_O=ONSTOR_OU=FIRST+20ADMINISTRATIVE+20GROUP_CN=RECIPIENTS_CN=RICHARD+2EBECK@onstor.com>
To: "Andy Sharp" <andy.sharp@onstor.com>

That's what I ended up using as well (at least the /\s\+$\| \+\ze\t/ was
identical.=20
Thanks! rb

-----Original Message-----
From: Andy Sharp=20
Sent: Thursday, May 31, 2007 4:12 PM
To: Richard Beck
Subject: Re: Whitespace checker utility

On Thu, 31 May 2007 15:51:54 -0700 "Richard Beck"
<richard.beck@onstor.com> wrote:

> Andy,
> Could you send me a copy / pointer to the utility you use for checking
> whitespace?  I want to make sure I've got everything.  I've installed
> a macro in vim that I _think_ catches it all, but this way I'll be
> sure I won't be giving you any problems in that area.
> Thanks, Rich

here is my vimrc entry that turns all whitespace violations red:

highlight RedundantSpaces ctermbg=3Dred guibg=3Dred
match RedundantSpaces /\s\+$\| \+\ze\t/
