[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Change Face of Tab Character?
From: |
Teemu Likonen |
Subject: |
Re: Change Face of Tab Character? |
Date: |
Wed, 12 Aug 2009 17:36:16 +0300 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux) |
On 2009-08-12 17:28 (+0300), Teemu Likonen wrote:
> M-x customize-group RET whitespace RET
>
> Then edit the "whitespace-tab" face so that its background is red. Turn
> on the whitespace-mode:
>
> (let ((whitespace-style '(tabs)))
> (whitespace-mode 1))
>
> Not sure if there is more elegant solution. I made this up pretty
> quickly. :-)
I think this is a bit better:
(let ((whitespace-style '(tabs tab-mark)))
(whitespace-mode 1))