1 ;;; whitespace.el --- minor mode to visualize TAB, (HARD) SPACE, NEWLINE
3 ;; Copyright (C) 2000-2011 Free Software Foundation, Inc.
5 ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br>
6 ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br>
9 ;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
33 ;; This package is a minor mode to visualize blanks (TAB, (HARD) SPACE
36 ;; whitespace uses two ways to visualize blanks: faces and display
39 ;; * Faces are used to highlight the background with a color.
40 ;; whitespace uses font-lock to highlight blank characters.
42 ;; * Display table changes the way a character is displayed, that is,
43 ;; it provides a visual mark for characters, for example, at the end
44 ;; of line (?\xB6), at SPACEs (?\xB7) and at TABs (?\xBB).
46 ;; The `whitespace-style' variable selects which way blanks are
49 ;; Note that when whitespace is turned on, whitespace saves the
50 ;; font-lock state, that is, if font-lock is on or off. And
51 ;; whitespace restores the font-lock state when it is turned off. So,
52 ;; if whitespace is turned on and font-lock is off, whitespace also
53 ;; turns on the font-lock to highlight blanks, but the font-lock will
54 ;; be turned off when whitespace is turned off. Thus, turn on
55 ;; font-lock before whitespace is on, if you want that font-lock
56 ;; continues on after whitespace is turned off.
58 ;; When whitespace is on, it takes care of highlighting some special
59 ;; characters over the default mechanism of `nobreak-char-display'
60 ;; (which see) and `show-trailing-whitespace' (which see).
62 ;; The trailing spaces are not highlighted while point is at end of line.
63 ;; Also the spaces at beginning of buffer are not highlighted while point is at
64 ;; beginning of buffer; and the spaces at end of buffer are not highlighted
65 ;; while point is at end of buffer.
67 ;; There are two ways of using whitespace: local and global.
69 ;; * Local whitespace affects only the current buffer.
71 ;; * Global whitespace affects all current and future buffers. That
72 ;; is, if you turn on global whitespace and then create a new
73 ;; buffer, the new buffer will also have whitespace on. The
74 ;; `whitespace-global-modes' variable controls which major-mode will
75 ;; be automagically turned on.
77 ;; You can mix the local and global usage without any conflict. But
78 ;; local whitespace has priority over global whitespace. Whitespace
79 ;; mode is active in a buffer if you have enabled it in that buffer or
80 ;; if you have enabled it globally.
82 ;; When global and local whitespace are on:
84 ;; * if local whitespace is turned off, whitespace is turned off for
85 ;; the current buffer only.
87 ;; * if global whitespace is turned off, whitespace continues on only
88 ;; in the buffers in which local whitespace is on.
90 ;; To use whitespace, insert in your ~/.emacs:
92 ;; (require 'whitespace)
94 ;; Or autoload at least one of the commands`whitespace-mode',
95 ;; `whitespace-toggle-options', `global-whitespace-mode' or
96 ;; `global-whitespace-toggle-options'. For example:
98 ;; (autoload 'whitespace-mode "whitespace"
99 ;; "Toggle whitespace visualization." t)
100 ;; (autoload 'whitespace-toggle-options "whitespace"
101 ;; "Toggle local `whitespace-mode' options." t)
103 ;; whitespace was inspired by:
105 ;; whitespace.el Rajesh Vaidheeswarran <rv@gnu.org>
106 ;; Warn about and clean bogus whitespaces in the file
107 ;; (inspired the idea to warn and clean some blanks)
108 ;; This was the original `whitespace.el' which was replaced by
109 ;; `blank-mode.el'. And later `blank-mode.el' was renamed to
112 ;; show-whitespace-mode.el Aurelien Tisne <aurelien.tisne@free.fr>
113 ;; Simple mode to highlight whitespaces
114 ;; (inspired the idea to use font-lock)
116 ;; whitespace-mode.el Lawrence Mitchell <wence@gmx.li>
117 ;; Major mode for editing Whitespace
118 ;; (inspired the idea to use display table)
120 ;; visws.el Miles Bader <miles@gnu.org>
121 ;; Make whitespace visible
122 ;; (handle display table, his code was modified, but the main
129 ;; There is no problem if you mix local and global minor mode usage.
131 ;; * LOCAL whitespace:
132 ;; + To toggle whitespace options locally, type:
134 ;; M-x whitespace-toggle-options RET
136 ;; + To activate whitespace locally, type:
138 ;; C-u 1 M-x whitespace-mode RET
140 ;; + To deactivate whitespace locally, type:
142 ;; C-u 0 M-x whitespace-mode RET
144 ;; + To toggle whitespace locally, type:
146 ;; M-x whitespace-mode RET
148 ;; * GLOBAL whitespace:
149 ;; + To toggle whitespace options globally, type:
151 ;; M-x global-whitespace-toggle-options RET
153 ;; + To activate whitespace globally, type:
155 ;; C-u 1 M-x global-whitespace-mode RET
157 ;; + To deactivate whitespace globally, type:
159 ;; C-u 0 M-x global-whitespace-mode RET
161 ;; + To toggle whitespace globally, type:
163 ;; M-x global-whitespace-mode RET
165 ;; There are also the following useful commands:
167 ;; `whitespace-newline-mode'
168 ;; Toggle NEWLINE minor mode visualization ("nl" on modeline).
170 ;; `global-whitespace-newline-mode'
171 ;; Toggle NEWLINE global minor mode visualization ("NL" on modeline).
173 ;; `whitespace-report'
174 ;; Report some blank problems in buffer.
176 ;; `whitespace-report-region'
177 ;; Report some blank problems in a region.
179 ;; `whitespace-cleanup'
180 ;; Cleanup some blank problems in all buffer or at region.
182 ;; `whitespace-cleanup-region'
183 ;; Cleanup some blank problems at region.
185 ;; The problems, which are cleaned up, are:
187 ;; 1. empty lines at beginning of buffer.
188 ;; 2. empty lines at end of buffer.
189 ;; If `whitespace-style' includes the value `empty', remove all
190 ;; empty lines at beginning and/or end of buffer.
192 ;; 3. 8 or more SPACEs at beginning of line.
193 ;; If `whitespace-style' includes the value `indentation':
194 ;; replace 8 or more SPACEs at beginning of line by TABs, if
195 ;; `indent-tabs-mode' is non-nil; otherwise, replace TABs by
197 ;; If `whitespace-style' includes the value `indentation::tab',
198 ;; replace 8 or more SPACEs at beginning of line by TABs.
199 ;; If `whitespace-style' includes the value `indentation::space',
200 ;; replace TABs by SPACEs.
202 ;; 4. SPACEs before TAB.
203 ;; If `whitespace-style' includes the value `space-before-tab':
204 ;; replace SPACEs by TABs, if `indent-tabs-mode' is non-nil;
205 ;; otherwise, replace TABs by SPACEs.
206 ;; If `whitespace-style' includes the value
207 ;; `space-before-tab::tab', replace SPACEs by TABs.
208 ;; If `whitespace-style' includes the value
209 ;; `space-before-tab::space', replace TABs by SPACEs.
211 ;; 5. SPACEs or TABs at end of line.
212 ;; If `whitespace-style' includes the value `trailing', remove all
213 ;; SPACEs or TABs at end of line.
215 ;; 6. 8 or more SPACEs after TAB.
216 ;; If `whitespace-style' includes the value `space-after-tab':
217 ;; replace SPACEs by TABs, if `indent-tabs-mode' is non-nil;
218 ;; otherwise, replace TABs by SPACEs.
219 ;; If `whitespace-style' includes the value `space-after-tab::tab',
220 ;; replace SPACEs by TABs.
221 ;; If `whitespace-style' includes the value
222 ;; `space-after-tab::space', replace TABs by SPACEs.
228 ;; whitespace has the following hook variables:
230 ;; `whitespace-mode-hook'
231 ;; It is evaluated always when whitespace is turned on locally.
233 ;; `global-whitespace-mode-hook'
234 ;; It is evaluated always when whitespace is turned on globally.
236 ;; `whitespace-load-hook'
237 ;; It is evaluated after whitespace package is loaded.
243 ;; Below it's shown a brief description of whitespace options, please,
244 ;; see the options declaration in the code for a long documentation.
246 ;; `whitespace-style' Specify which kind of blank is
249 ;; `whitespace-space' Face used to visualize SPACE.
251 ;; `whitespace-hspace' Face used to visualize HARD SPACE.
253 ;; `whitespace-tab' Face used to visualize TAB.
255 ;; `whitespace-newline' Face used to visualize NEWLINE char
258 ;; `whitespace-trailing' Face used to visualize trailing
261 ;; `whitespace-line' Face used to visualize "long" lines.
263 ;; `whitespace-space-before-tab' Face used to visualize SPACEs
266 ;; `whitespace-indentation' Face used to visualize 8 or more
267 ;; SPACEs at beginning of line.
269 ;; `whitespace-empty' Face used to visualize empty lines at
270 ;; beginning and/or end of buffer.
272 ;; `whitespace-space-after-tab' Face used to visualize 8 or more
275 ;; `whitespace-space-regexp' Specify SPACE characters regexp.
277 ;; `whitespace-hspace-regexp' Specify HARD SPACE characters regexp.
279 ;; `whitespace-tab-regexp' Specify TAB characters regexp.
281 ;; `whitespace-trailing-regexp' Specify trailing characters regexp.
283 ;; `whitespace-space-before-tab-regexp' Specify SPACEs before TAB
286 ;; `whitespace-indentation-regexp' Specify regexp for 8 or more
287 ;; SPACEs at beginning of line.
289 ;; `whitespace-empty-at-bob-regexp' Specify regexp for empty lines
290 ;; at beginning of buffer.
292 ;; `whitespace-empty-at-eob-regexp' Specify regexp for empty lines
295 ;; `whitespace-space-after-tab-regexp' Specify regexp for 8 or more
298 ;; `whitespace-line-column' Specify column beyond which the line
301 ;; `whitespace-display-mappings' Specify an alist of mappings
302 ;; for displaying characters.
304 ;; `whitespace-global-modes' Modes for which global
305 ;; `whitespace-mode' is automagically
308 ;; `whitespace-action' Specify which action is taken when a
309 ;; buffer is visited or written.
315 ;; Thanks to felix (EmacsWiki) for keeping highlight when switching between
316 ;; major modes on a file.
318 ;; Thanks to David Reitter <david.reitter@gmail.com> for suggesting a
319 ;; `whitespace-newline' initialization with low contrast relative to
320 ;; the background color.
322 ;; Thanks to Stephen Deasey <sdeasey@gmail.com> for the
323 ;; `indent-tabs-mode' usage suggestion.
325 ;; Thanks to Eric Cooper <ecc@cmu.edu> for the suggestion to have hook
326 ;; actions when buffer is written as the original whitespace package
329 ;; Thanks to nschum (EmacsWiki) for the idea about highlight "long"
330 ;; lines tail. See EightyColumnRule (EmacsWiki).
332 ;; Thanks to Juri Linkov <juri@jurta.org> for suggesting:
333 ;; * `define-minor-mode'.
334 ;; * `global-whitespace-*' name for global commands.
336 ;; Thanks to Robert J. Chassell <bob@gnu.org> for doc fix and testing.
338 ;; Thanks to Drew Adams <drew.adams@oracle.com> for toggle commands
341 ;; Thanks to Antti Kaihola <antti.kaihola@linux-aktivaattori.org> for
342 ;; helping to fix `find-file-hooks' reference.
344 ;; Thanks to Andreas Roehler <andreas.roehler@easy-emacs.de> for
345 ;; indicating defface byte-compilation warnings.
347 ;; Thanks to TimOCallaghan (EmacsWiki) for the idea about highlight
348 ;; "long" lines. See EightyColumnRule (EmacsWiki).
350 ;; Thanks to Yanghui Bian <yanghuibian@gmail.com> for indicating a new
351 ;; NEWLINE character mapping.
353 ;; Thanks to Pete Forman <pete.forman@westgeo.com> for indicating
354 ;; whitespace-mode.el on XEmacs.
356 ;; Thanks to Miles Bader <miles@gnu.org> for handling display table via
357 ;; visws.el (his code was modified, but the main idea was kept).
360 ;; Rajesh Vaidheeswarran <rv@gnu.org> (original) whitespace.el
361 ;; Aurelien Tisne <aurelien.tisne@free.fr> show-whitespace-mode.el
362 ;; Lawrence Mitchell <wence@gmx.li> whitespace-mode.el
363 ;; Miles Bader <miles@gnu.org> visws.el
364 ;; And to all people who contributed with them.
367 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
372 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376 ;;; Interface to the command system
379 (defgroup whitespace nil
380 "Visualize blanks (TAB, (HARD) SPACE and NEWLINE)."
381 :link
'(emacs-library-link :tag
"Source Lisp File" "whitespace.el")
386 (defcustom whitespace-style
388 tabs spaces trailing lines space-before-tab newline
389 indentation empty space-after-tab
390 space-mark tab-mark newline-mark
)
391 "Specify which kind of blank is visualized.
393 It's a list containing some or all of the following values:
395 face enable all visualization via faces (see below).
397 trailing trailing blanks are visualized via faces.
398 It has effect only if `face' (see above)
399 is present in `whitespace-style'.
401 tabs TABs are visualized via faces.
402 It has effect only if `face' (see above)
403 is present in `whitespace-style'.
405 spaces SPACEs and HARD SPACEs are visualized via
407 It has effect only if `face' (see above)
408 is present in `whitespace-style'.
410 lines lines which have columns beyond
411 `whitespace-line-column' are highlighted via
413 Whole line is highlighted.
414 It has precedence over `lines-tail' (see
416 It has effect only if `face' (see above)
417 is present in `whitespace-style'.
419 lines-tail lines which have columns beyond
420 `whitespace-line-column' are highlighted via
422 But only the part of line which goes
423 beyond `whitespace-line-column' column.
424 It has effect only if `lines' (see above)
425 is not present in `whitespace-style'
426 and if `face' (see above) is present in
429 newline NEWLINEs are visualized via faces.
430 It has effect only if `face' (see above)
431 is present in `whitespace-style'.
433 empty empty lines at beginning and/or end of buffer
434 are visualized via faces.
435 It has effect only if `face' (see above)
436 is present in `whitespace-style'.
438 indentation::tab 8 or more SPACEs at beginning of line are
439 visualized via faces.
440 It has effect only if `face' (see above)
441 is present in `whitespace-style'.
443 indentation::space TABs at beginning of line are visualized via
445 It has effect only if `face' (see above)
446 is present in `whitespace-style'.
448 indentation 8 or more SPACEs at beginning of line are
449 visualized, if `indent-tabs-mode' (which see)
450 is non-nil; otherwise, TABs at beginning of
451 line are visualized via faces.
452 It has effect only if `face' (see above)
453 is present in `whitespace-style'.
455 space-after-tab::tab 8 or more SPACEs after a TAB are
456 visualized via faces.
457 It has effect only if `face' (see above)
458 is present in `whitespace-style'.
460 space-after-tab::space TABs are visualized when 8 or more
461 SPACEs occur after a TAB, via faces.
462 It has effect only if `face' (see above)
463 is present in `whitespace-style'.
465 space-after-tab 8 or more SPACEs after a TAB are
466 visualized, if `indent-tabs-mode'
467 (which see) is non-nil; otherwise,
468 the TABs are visualized via faces.
469 It has effect only if `face' (see above)
470 is present in `whitespace-style'.
472 space-before-tab::tab SPACEs before TAB are visualized via
474 It has effect only if `face' (see above)
475 is present in `whitespace-style'.
477 space-before-tab::space TABs are visualized when SPACEs occur
478 before TAB, via faces.
479 It has effect only if `face' (see above)
480 is present in `whitespace-style'.
482 space-before-tab SPACEs before TAB are visualized, if
483 `indent-tabs-mode' (which see) is
484 non-nil; otherwise, the TABs are
485 visualized via faces.
486 It has effect only if `face' (see above)
487 is present in `whitespace-style'.
489 space-mark SPACEs and HARD SPACEs are visualized via
492 tab-mark TABs are visualized via display table.
494 newline-mark NEWLINEs are visualized via display table.
496 Any other value is ignored.
498 If nil, don't visualize TABs, (HARD) SPACEs and NEWLINEs via faces and
501 There is an evaluation order for some values, if they are
502 included in `whitespace-style' list. For example, if
503 indentation, indentation::tab and/or indentation::space are
504 included in `whitespace-style' list. The evaluation order for
510 3. indentation::space
512 * For SPACEs after TABs:
514 2. space-after-tab::tab
515 3. space-after-tab::space
517 * For SPACEs before TABs:
519 2. space-before-tab::tab
520 3. space-before-tab::space
522 So, for example, if indentation and indentation::space are
523 included in `whitespace-style' list, the indentation value is
524 evaluated instead of indentation::space value.
526 One reason for not visualize spaces via faces (if `face' is not
527 included in `whitespace-style') is to use exclusively for
528 cleaning up a buffer. See `whitespace-cleanup' and
529 `whitespace-cleanup-region' for documentation.
531 See also `whitespace-display-mappings' for documentation."
532 :type
'(repeat :tag
"Kind of Blank"
533 (choice :tag
"Kind of Blank Face"
534 (const :tag
"(Face) Face visualization"
536 (const :tag
"(Face) Trailing TABs, SPACEs and HARD SPACEs"
538 (const :tag
"(Face) SPACEs and HARD SPACEs"
540 (const :tag
"(Face) TABs" tabs
)
541 (const :tag
"(Face) Lines" lines
)
542 (const :tag
"(Face) SPACEs before TAB"
544 (const :tag
"(Face) NEWLINEs" newline
)
545 (const :tag
"(Face) Indentation SPACEs"
547 (const :tag
"(Face) Empty Lines At BOB And/Or EOB"
549 (const :tag
"(Face) SPACEs after TAB"
551 (const :tag
"(Mark) SPACEs and HARD SPACEs"
553 (const :tag
"(Mark) TABs" tab-mark
)
554 (const :tag
"(Mark) NEWLINEs" newline-mark
)))
558 (defcustom whitespace-space
'whitespace-space
559 "Symbol face used to visualize SPACE.
561 Used when `whitespace-style' includes the value `spaces'."
566 (defface whitespace-space
567 '((((class color
) (background dark
))
568 (:background
"grey20" :foreground
"darkgray"))
569 (((class color
) (background light
))
570 (:background
"LightYellow" :foreground
"lightgray"))
571 (t (:inverse-video t
)))
572 "Face used to visualize SPACE."
576 (defcustom whitespace-hspace
'whitespace-hspace
577 "Symbol face used to visualize HARD SPACE.
579 Used when `whitespace-style' includes the value `spaces'."
584 (defface whitespace-hspace
; 'nobreak-space
585 '((((class color
) (background dark
))
586 (:background
"grey24" :foreground
"darkgray"))
587 (((class color
) (background light
))
588 (:background
"LemonChiffon3" :foreground
"lightgray"))
589 (t (:inverse-video t
)))
590 "Face used to visualize HARD SPACE."
594 (defcustom whitespace-tab
'whitespace-tab
595 "Symbol face used to visualize TAB.
597 Used when `whitespace-style' includes the value `tabs'."
602 (defface whitespace-tab
603 '((((class color
) (background dark
))
604 (:background
"grey22" :foreground
"darkgray"))
605 (((class color
) (background light
))
606 (:background
"beige" :foreground
"lightgray"))
607 (t (:inverse-video t
)))
608 "Face used to visualize TAB."
612 (defcustom whitespace-newline
'whitespace-newline
613 "Symbol face used to visualize NEWLINE char mapping.
615 See `whitespace-display-mappings'.
617 Used when `whitespace-style' includes the values `newline-mark'
623 (defface whitespace-newline
624 '((((class color
) (background dark
))
625 (:foreground
"darkgray" :bold nil
))
626 (((class color
) (background light
))
627 (:foreground
"lightgray" :bold nil
))
628 (t (:underline t
:bold nil
)))
629 "Face used to visualize NEWLINE char mapping.
631 See `whitespace-display-mappings'."
635 (defcustom whitespace-trailing
'whitespace-trailing
636 "Symbol face used to visualize trailing blanks.
638 Used when `whitespace-style' includes the value `trailing'."
643 (defface whitespace-trailing
; 'trailing-whitespace
644 '((((class mono
)) (:inverse-video t
:bold t
:underline t
))
645 (t (:background
"red1" :foreground
"yellow" :bold t
)))
646 "Face used to visualize trailing blanks."
650 (defcustom whitespace-line
'whitespace-line
651 "Symbol face used to visualize \"long\" lines.
653 See `whitespace-line-column'.
655 Used when `whitespace-style' includes the value `line'."
660 (defface whitespace-line
661 '((((class mono
)) (:inverse-video t
:bold t
:underline t
))
662 (t (:background
"gray20" :foreground
"violet")))
663 "Face used to visualize \"long\" lines.
665 See `whitespace-line-column'."
669 (defcustom whitespace-space-before-tab
'whitespace-space-before-tab
670 "Symbol face used to visualize SPACEs before TAB.
672 Used when `whitespace-style' includes the value `space-before-tab'."
677 (defface whitespace-space-before-tab
678 '((((class mono
)) (:inverse-video t
:bold t
:underline t
))
679 (t (:background
"DarkOrange" :foreground
"firebrick")))
680 "Face used to visualize SPACEs before TAB."
684 (defcustom whitespace-indentation
'whitespace-indentation
685 "Symbol face used to visualize 8 or more SPACEs at beginning of line.
687 Used when `whitespace-style' includes the value `indentation'."
692 (defface whitespace-indentation
693 '((((class mono
)) (:inverse-video t
:bold t
:underline t
))
694 (t (:background
"yellow" :foreground
"firebrick")))
695 "Face used to visualize 8 or more SPACEs at beginning of line."
699 (defcustom whitespace-empty
'whitespace-empty
700 "Symbol face used to visualize empty lines at beginning and/or end of buffer.
702 Used when `whitespace-style' includes the value `empty'."
707 (defface whitespace-empty
708 '((((class mono
)) (:inverse-video t
:bold t
:underline t
))
709 (t (:background
"yellow" :foreground
"firebrick")))
710 "Face used to visualize empty lines at beginning and/or end of buffer."
714 (defcustom whitespace-space-after-tab
'whitespace-space-after-tab
715 "Symbol face used to visualize 8 or more SPACEs after TAB.
717 Used when `whitespace-style' includes the value `space-after-tab'."
722 (defface whitespace-space-after-tab
723 '((((class mono
)) (:inverse-video t
:bold t
:underline t
))
724 (t (:background
"yellow" :foreground
"firebrick")))
725 "Face used to visualize 8 or more SPACEs after TAB."
729 (defcustom whitespace-hspace-regexp
730 "\\(\\(\xA0\\|\x8A0\\|\x920\\|\xE20\\|\xF20\\)+\\)"
731 "Specify HARD SPACE characters regexp.
733 If you're using `mule' package, there may be other characters besides:
735 \"\\xA0\" \"\\x8A0\" \"\\x920\" \"\\xE20\" \"\\xF20\"
737 that should be considered HARD SPACE.
739 Here are some examples:
741 \"\\\\(^\\xA0+\\\\)\" \
742 visualize only leading HARD SPACEs.
743 \"\\\\(\\xA0+$\\\\)\" \
744 visualize only trailing HARD SPACEs.
745 \"\\\\(^\\xA0+\\\\|\\xA0+$\\\\)\" \
746 visualize leading and/or trailing HARD SPACEs.
747 \"\\t\\\\(\\xA0+\\\\)\\t\" \
748 visualize only HARD SPACEs between TABs.
750 NOTE: Enclose always by \\\\( and \\\\) the elements to highlight.
751 Use exactly one pair of enclosing \\\\( and \\\\).
753 Used when `whitespace-style' includes `spaces'."
754 :type
'(regexp :tag
"HARD SPACE Chars")
758 (defcustom whitespace-space-regexp
"\\( +\\)"
759 "Specify SPACE characters regexp.
761 If you're using `mule' package, there may be other characters
762 besides \" \" that should be considered SPACE.
764 Here are some examples:
766 \"\\\\(^ +\\\\)\" visualize only leading SPACEs.
767 \"\\\\( +$\\\\)\" visualize only trailing SPACEs.
768 \"\\\\(^ +\\\\| +$\\\\)\" \
769 visualize leading and/or trailing SPACEs.
770 \"\\t\\\\( +\\\\)\\t\" visualize only SPACEs between TABs.
772 NOTE: Enclose always by \\\\( and \\\\) the elements to highlight.
773 Use exactly one pair of enclosing \\\\( and \\\\).
775 Used when `whitespace-style' includes `spaces'."
776 :type
'(regexp :tag
"SPACE Chars")
780 (defcustom whitespace-tab-regexp
"\\(\t+\\)"
781 "Specify TAB characters regexp.
783 If you're using `mule' package, there may be other characters
784 besides \"\\t\" that should be considered TAB.
786 Here are some examples:
788 \"\\\\(^\\t+\\\\)\" visualize only leading TABs.
789 \"\\\\(\\t+$\\\\)\" visualize only trailing TABs.
790 \"\\\\(^\\t+\\\\|\\t+$\\\\)\" \
791 visualize leading and/or trailing TABs.
792 \" \\\\(\\t+\\\\) \" visualize only TABs between SPACEs.
794 NOTE: Enclose always by \\\\( and \\\\) the elements to highlight.
795 Use exactly one pair of enclosing \\\\( and \\\\).
797 Used when `whitespace-style' includes `tabs'."
798 :type
'(regexp :tag
"TAB Chars")
802 (defcustom whitespace-trailing-regexp
803 "\\([\t \u00A0]+\\)$"
804 "Specify trailing characters regexp.
806 If you're using `mule' package, there may be other characters besides:
808 \" \" \"\\t\" \"\\u00A0\"
810 that should be considered blank.
812 NOTE: Enclose always by \"\\\\(\" and \"\\\\)$\" the elements to highlight.
813 Use exactly one pair of enclosing elements above.
815 Used when `whitespace-style' includes `trailing'."
816 :type
'(regexp :tag
"Trailing Chars")
820 (defcustom whitespace-space-before-tab-regexp
"\\( +\\)\\(\t+\\)"
821 "Specify SPACEs before TAB regexp.
823 If you're using `mule' package, there may be other characters besides:
825 \" \" \"\\t\" \"\\xA0\" \"\\x8A0\" \"\\x920\" \"\\xE20\" \
828 that should be considered blank.
830 Used when `whitespace-style' includes `space-before-tab',
831 `space-before-tab::tab' or `space-before-tab::space'."
832 :type
'(regexp :tag
"SPACEs Before TAB")
836 (defcustom whitespace-indentation-regexp
837 '("^\t*\\(\\( \\{%d\\}\\)+\\)[^\n\t]"
838 .
"^ *\\(\t+\\)[^\n]")
839 "Specify regexp for 8 or more SPACEs at beginning of line.
841 It is a cons where the cons car is used for SPACEs visualization
842 and the cons cdr is used for TABs visualization.
844 If you're using `mule' package, there may be other characters besides:
846 \" \" \"\\t\" \"\\xA0\" \"\\x8A0\" \"\\x920\" \"\\xE20\" \
849 that should be considered blank.
851 Used when `whitespace-style' includes `indentation',
852 `indentation::tab' or `indentation::space'."
853 :type
'(cons (regexp :tag
"Indentation SPACEs")
854 (regexp :tag
"Indentation TABs"))
858 (defcustom whitespace-empty-at-bob-regexp
"^\\(\\([ \t]*\n\\)+\\)"
859 "Specify regexp for empty lines at beginning of buffer.
861 If you're using `mule' package, there may be other characters besides:
863 \" \" \"\\t\" \"\\xA0\" \"\\x8A0\" \"\\x920\" \"\\xE20\" \
866 that should be considered blank.
868 Used when `whitespace-style' includes `empty'."
869 :type
'(regexp :tag
"Empty Lines At Beginning Of Buffer")
873 (defcustom whitespace-empty-at-eob-regexp
"^\\([ \t\n]+\\)"
874 "Specify regexp for empty lines at end of buffer.
876 If you're using `mule' package, there may be other characters besides:
878 \" \" \"\\t\" \"\\xA0\" \"\\x8A0\" \"\\x920\" \"\\xE20\" \
881 that should be considered blank.
883 Used when `whitespace-style' includes `empty'."
884 :type
'(regexp :tag
"Empty Lines At End Of Buffer")
888 (defcustom whitespace-space-after-tab-regexp
889 '("\t+\\(\\( \\{%d\\}\\)+\\)"
891 "Specify regexp for 8 or more SPACEs after TAB.
893 It is a cons where the cons car is used for SPACEs visualization
894 and the cons cdr is used for TABs visualization.
896 If you're using `mule' package, there may be other characters besides:
898 \" \" \"\\t\" \"\\xA0\" \"\\x8A0\" \"\\x920\" \"\\xE20\" \
901 that should be considered blank.
903 Used when `whitespace-style' includes `space-after-tab',
904 `space-after-tab::tab' or `space-after-tab::space'."
905 :type
'(regexp :tag
"SPACEs After TAB")
909 (defcustom whitespace-line-column
80
910 "Specify column beyond which the line is highlighted.
912 It must be an integer or nil. If nil, the `fill-column' variable value is
915 Used when `whitespace-style' includes `lines' or `lines-tail'."
916 :type
'(choice :tag
"Line Length Limit"
917 (integer :tag
"Line Length")
918 (const :tag
"Use fill-column" nil
))
922 ;; Hacked from `visible-whitespace-mappings' in visws.el
923 (defcustom whitespace-display-mappings
925 (space-mark ?\
[?
\u00B7] [?.
]) ; space - centered dot
926 (space-mark ?
\xA0 [?
\u00A4] [?_
]) ; hard space - currency
927 (space-mark ?
\x8A0 [?
\x8A4] [?_
]) ; hard space - currency
928 (space-mark ?
\x920
[?
\x924
] [?_
]) ; hard space - currency
929 (space-mark ?
\xE20
[?
\xE24
] [?_
]) ; hard space - currency
930 (space-mark ?
\xF20
[?
\xF24
] [?_
]) ; hard space - currency
931 ;; NEWLINE is displayed using the face `whitespace-newline'
932 (newline-mark ?
\n [?$ ?
\n]) ; eol - dollar sign
933 ;; (newline-mark ?\n [?\u21B5 ?\n] [?$ ?\n]) ; eol - downwards arrow
934 ;; (newline-mark ?\n [?\u00B6 ?\n] [?$ ?\n]) ; eol - pilcrow
935 ;; (newline-mark ?\n [?\x8AF ?\n] [?$ ?\n]) ; eol - overscore
936 ;; (newline-mark ?\n [?\x8AC ?\n] [?$ ?\n]) ; eol - negation
937 ;; (newline-mark ?\n [?\x8B0 ?\n] [?$ ?\n]) ; eol - grade
939 ;; WARNING: the mapping below has a problem.
940 ;; When a TAB occupies exactly one column, it will display the
941 ;; character ?\xBB at that column followed by a TAB which goes to
942 ;; the next TAB column.
943 ;; If this is a problem for you, please, comment the line below.
944 (tab-mark ?
\t [?
\u00BB ?
\t] [?
\\ ?
\t]) ; tab - left quote mark
946 "Specify an alist of mappings for displaying characters.
948 Each element has the following form:
950 (KIND CHAR VECTOR...)
954 KIND is the kind of character.
955 It can be one of the following symbols:
957 tab-mark for TAB character
959 space-mark for SPACE or HARD SPACE character
961 newline-mark for NEWLINE character
963 CHAR is the character to be mapped.
965 VECTOR is a vector of characters to be displayed in place of CHAR.
966 The first display vector that can be displayed is used;
967 if no display vector for a mapping can be displayed, then
968 that character is displayed unmodified.
970 The NEWLINE character is displayed using the face given by
971 `whitespace-newline' variable.
973 Used when `whitespace-style' includes `tab-mark', `space-mark' or
976 (list :tag
"Character Mapping"
977 (choice :tag
"Char Kind"
978 (const :tag
"Tab" tab-mark
)
979 (const :tag
"Space" space-mark
)
980 (const :tag
"Newline" newline-mark
))
981 (character :tag
"Char")
982 (repeat :inline t
:tag
"Vector List"
985 :tag
"Vector Characters"
986 (character :tag
"Char"))))))
990 (defcustom whitespace-global-modes t
991 "Modes for which global `whitespace-mode' is automagically turned on.
993 Global `whitespace-mode' is controlled by the command
994 `global-whitespace-mode'.
996 If nil, means no modes have `whitespace-mode' automatically
999 If t, all modes that support `whitespace-mode' have it
1000 automatically turned on.
1002 Else it should be a list of `major-mode' symbol names for which
1003 `whitespace-mode' should be automatically turned on. The sense
1004 of the list is negated if it begins with `not'. For example:
1008 means that `whitespace-mode' is turned on for buffers in C and
1010 :type
'(choice :tag
"Global Modes"
1011 (const :tag
"None" nil
)
1012 (const :tag
"All" t
)
1013 (set :menu-tag
"Mode Specific" :tag
"Modes"
1015 (const :tag
"Except" not
)
1017 (symbol :tag
"Mode"))))
1021 (defcustom whitespace-action nil
1022 "Specify which action is taken when a buffer is visited or written.
1024 It's a list containing some or all of the following values:
1026 nil no action is taken.
1028 cleanup cleanup any bogus whitespace always when local
1029 whitespace is turned on.
1030 See `whitespace-cleanup' and
1031 `whitespace-cleanup-region'.
1033 report-on-bogus report if there is any bogus whitespace always
1034 when local whitespace is turned on.
1036 auto-cleanup cleanup any bogus whitespace when buffer is
1038 See `whitespace-cleanup' and
1039 `whitespace-cleanup-region'.
1041 abort-on-bogus abort if there is any bogus whitespace and the
1044 warn-if-read-only give a warning if `cleanup' or `auto-cleanup'
1045 is included in `whitespace-action' and the
1046 buffer is read-only.
1048 Any other value is treated as nil."
1049 :type
'(choice :tag
"Actions"
1050 (const :tag
"None" nil
)
1051 (repeat :tag
"Action List"
1052 (choice :tag
"Action"
1053 (const :tag
"Cleanup When On" cleanup
)
1054 (const :tag
"Report On Bogus" report-on-bogus
)
1055 (const :tag
"Auto Cleanup" auto-cleanup
)
1056 (const :tag
"Abort On Bogus" abort-on-bogus
)
1057 (const :tag
"Warn If Read-Only" warn-if-read-only
))))
1061 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1062 ;;;; User commands - Local mode
1066 (define-minor-mode whitespace-mode
1067 "Toggle whitespace visualization (Whitespace mode).
1068 With a prefix argument ARG, enable Whitespace mode if ARG is
1069 positive, and disable it otherwise. If called from Lisp, enable
1070 the mode if ARG is omitted or nil.
1072 See also `whitespace-style', `whitespace-newline' and
1073 `whitespace-display-mappings'."
1079 (noninteractive ; running a batch job
1080 (setq whitespace-mode nil
))
1081 (whitespace-mode ; whitespace-mode on
1082 (whitespace-turn-on)
1083 (whitespace-action-when-on))
1084 (t ; whitespace-mode off
1085 (whitespace-turn-off))))
1089 (define-minor-mode whitespace-newline-mode
1090 "Toggle newline visualization (Whitespace Newline mode).
1091 With a prefix argument ARG, enable Whitespace Newline mode if ARG
1092 is positive, and disable it otherwise. If called from Lisp,
1093 enable the mode if ARG is omitted or nil.
1095 Use `whitespace-newline-mode' only for NEWLINE visualization
1096 exclusively. For other visualizations, including NEWLINE
1097 visualization together with (HARD) SPACEs and/or TABs, please,
1098 use `whitespace-mode'.
1100 See also `whitespace-newline' and `whitespace-display-mappings'."
1105 (let ((whitespace-style '(face newline-mark newline
)))
1106 (whitespace-mode (if whitespace-newline-mode
1108 ;; sync states (running a batch job)
1109 (setq whitespace-newline-mode whitespace-mode
))
1112 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1113 ;;;; User commands - Global mode
1117 (define-minor-mode global-whitespace-mode
1118 "Toggle whitespace visualization globally (Global Whitespace mode).
1119 With a prefix argument ARG, enable Global Whitespace mode if ARG
1120 is positive, and disable it otherwise. If called from Lisp,
1121 enable it if ARG is omitted or nil.
1123 See also `whitespace-style', `whitespace-newline' and
1124 `whitespace-display-mappings'."
1130 (noninteractive ; running a batch job
1131 (setq global-whitespace-mode nil
))
1132 (global-whitespace-mode ; global-whitespace-mode on
1133 (save-current-buffer
1134 (add-hook 'find-file-hook
'whitespace-turn-on-if-enabled
)
1135 (add-hook 'after-change-major-mode-hook
'whitespace-turn-on-if-enabled
)
1136 (dolist (buffer (buffer-list)) ; adjust all local mode
1138 (unless whitespace-mode
1139 (whitespace-turn-on-if-enabled)))))
1140 (t ; global-whitespace-mode off
1141 (save-current-buffer
1142 (remove-hook 'find-file-hook
'whitespace-turn-on-if-enabled
)
1143 (remove-hook 'after-change-major-mode-hook
'whitespace-turn-on-if-enabled
)
1144 (dolist (buffer (buffer-list)) ; adjust all local mode
1146 (unless whitespace-mode
1147 (whitespace-turn-off)))))))
1150 (defun whitespace-turn-on-if-enabled ()
1152 ((eq whitespace-global-modes t
))
1153 ((listp whitespace-global-modes
)
1154 (if (eq (car-safe whitespace-global-modes
) 'not
)
1155 (not (memq major-mode
(cdr whitespace-global-modes
)))
1156 (memq major-mode whitespace-global-modes
)))
1159 ;; Don't turn on whitespace mode if...
1161 ;; ...we don't have a display (we're running a batch job)
1163 ;; ...or if the buffer is invisible (name starts with a space)
1164 (eq (aref (buffer-name) 0) ?\
)
1165 ;; ...or if the buffer is temporary (name starts with *)
1166 (and (eq (aref (buffer-name) 0) ?
*)
1167 ;; except the scratch buffer.
1168 (not (string= (buffer-name) "*scratch*")))
1169 ;; Otherwise, turn on whitespace mode.
1170 (whitespace-turn-on)))))
1174 (define-minor-mode global-whitespace-newline-mode
1175 "Toggle global newline visualization (Global Whitespace Newline mode).
1176 With a prefix argument ARG, enable Global Whitespace Newline mode
1177 if ARG is positive, and disable it otherwise. If called from
1178 Lisp, enable it if ARG is omitted or nil.
1180 Use `global-whitespace-newline-mode' only for NEWLINE
1181 visualization exclusively. For other visualizations, including
1182 NEWLINE visualization together with (HARD) SPACEs and/or TABs,
1183 please use `global-whitespace-mode'.
1185 See also `whitespace-newline' and `whitespace-display-mappings'."
1190 (let ((whitespace-style '(newline-mark newline
)))
1191 (global-whitespace-mode (if global-whitespace-newline-mode
1193 ;; sync states (running a batch job)
1194 (setq global-whitespace-newline-mode global-whitespace-mode
)))
1197 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1198 ;;;; User commands - Toggle
1201 (defconst whitespace-style-value-list
1214 space-after-tab
::tab
1215 space-after-tab
::space
1217 space-before-tab
::tab
1218 space-before-tab
::space
1219 help-newline
; value used by `whitespace-insert-option-mark'
1224 "List of valid `whitespace-style' values.")
1227 (defconst whitespace-toggle-option-alist
1236 (?\C-i . indentation
)
1237 (?I . indentation
::tab
)
1238 (?i . indentation
::space
)
1239 (?\C-a . space-after-tab
)
1240 (?A . space-after-tab
::tab
)
1241 (?a . space-after-tab
::space
)
1242 (?\C-b . space-before-tab
)
1243 (?B . space-before-tab
::tab
)
1244 (?b . space-before-tab
::space
)
1248 (?x . whitespace-style
)
1250 "Alist of toggle options.
1252 Each element has the form:
1258 CHAR is a char which the user will have to type.
1260 SYMBOL is a valid symbol associated with CHAR.
1261 See `whitespace-style-value-list'.")
1264 (defvar whitespace-active-style nil
1265 "Used to save locally `whitespace-style' value.")
1267 (defvar whitespace-indent-tabs-mode indent-tabs-mode
1268 "Used to save locally `indent-tabs-mode' value.")
1270 (defvar whitespace-tab-width tab-width
1271 "Used to save locally `tab-width' value.")
1273 (defvar whitespace-point
(point)
1274 "Used to save locally current point value.
1275 Used by `whitespace-trailing-regexp' function (which see).")
1277 (defvar whitespace-font-lock-refontify nil
1278 "Used to save locally the font-lock refontify state.
1279 Used by `whitespace-post-command-hook' function (which see).")
1281 (defvar whitespace-bob-marker nil
1282 "Used to save locally the bob marker value.
1283 Used by `whitespace-post-command-hook' function (which see).")
1285 (defvar whitespace-eob-marker nil
1286 "Used to save locally the eob marker value.
1287 Used by `whitespace-post-command-hook' function (which see).")
1289 (defvar whitespace-buffer-changed nil
1290 "Used to indicate locally if buffer changed.
1291 Used by `whitespace-post-command-hook' and `whitespace-buffer-changed'
1292 functions (which see).")
1296 (defun whitespace-toggle-options (arg)
1297 "Toggle local `whitespace-mode' options.
1299 If local whitespace-mode is off, toggle the option given by ARG
1300 and turn on local whitespace-mode.
1302 If local whitespace-mode is on, toggle the option given by ARG
1303 and restart local whitespace-mode.
1305 Interactively, it reads one of the following chars:
1309 f toggle face visualization
1310 t toggle TAB visualization
1311 s toggle SPACE and HARD SPACE visualization
1312 r toggle trailing blanks visualization
1313 l toggle \"long lines\" visualization
1314 L toggle \"long lines\" tail visualization
1315 n toggle NEWLINE visualization
1316 e toggle empty line at bob and/or eob visualization
1317 C-i toggle indentation SPACEs visualization (via `indent-tabs-mode')
1318 I toggle indentation SPACEs visualization
1319 i toggle indentation TABs visualization
1320 C-a toggle SPACEs after TAB visualization (via `indent-tabs-mode')
1321 A toggle SPACEs after TAB: SPACEs visualization
1322 a toggle SPACEs after TAB: TABs visualization
1323 C-b toggle SPACEs before TAB visualization (via `indent-tabs-mode')
1324 B toggle SPACEs before TAB: SPACEs visualization
1325 b toggle SPACEs before TAB: TABs visualization
1328 T toggle TAB visualization
1329 S toggle SPACEs before TAB visualization
1330 N toggle NEWLINE visualization
1332 x restore `whitespace-style' value
1333 ? display brief help
1335 Non-interactively, ARG should be a symbol or a list of symbols.
1336 The valid symbols are:
1338 face toggle face visualization
1339 tabs toggle TAB visualization
1340 spaces toggle SPACE and HARD SPACE visualization
1341 trailing toggle trailing blanks visualization
1342 lines toggle \"long lines\" visualization
1343 lines-tail toggle \"long lines\" tail visualization
1344 newline toggle NEWLINE visualization
1345 empty toggle empty line at bob and/or eob visualization
1346 indentation toggle indentation SPACEs visualization
1347 indentation::tab toggle indentation SPACEs visualization
1348 indentation::space toggle indentation TABs visualization
1349 space-after-tab toggle SPACEs after TAB visualization
1350 space-after-tab::tab toggle SPACEs after TAB: SPACEs visualization
1351 space-after-tab::space toggle SPACEs after TAB: TABs visualization
1352 space-before-tab toggle SPACEs before TAB visualization
1353 space-before-tab::tab toggle SPACEs before TAB: SPACEs visualization
1354 space-before-tab::space toggle SPACEs before TAB: TABs visualization
1356 tab-mark toggle TAB visualization
1357 space-mark toggle SPACEs before TAB visualization
1358 newline-mark toggle NEWLINE visualization
1360 whitespace-style restore `whitespace-style' value
1362 See `whitespace-style' and `indent-tabs-mode' for documentation."
1363 (interactive (whitespace-interactive-char t
))
1364 (let ((whitespace-style
1365 (whitespace-toggle-list t arg whitespace-active-style
)))
1367 (whitespace-mode 1)))
1370 (defvar whitespace-toggle-style nil
1371 "Used to toggle the global `whitespace-style' value.")
1375 (defun global-whitespace-toggle-options (arg)
1376 "Toggle global `whitespace-mode' options.
1378 If global whitespace-mode is off, toggle the option given by ARG
1379 and turn on global whitespace-mode.
1381 If global whitespace-mode is on, toggle the option given by ARG
1382 and restart global whitespace-mode.
1384 Interactively, it accepts one of the following chars:
1388 f toggle face visualization
1389 t toggle TAB visualization
1390 s toggle SPACE and HARD SPACE visualization
1391 r toggle trailing blanks visualization
1392 l toggle \"long lines\" visualization
1393 L toggle \"long lines\" tail visualization
1394 n toggle NEWLINE visualization
1395 e toggle empty line at bob and/or eob visualization
1396 C-i toggle indentation SPACEs visualization (via `indent-tabs-mode')
1397 I toggle indentation SPACEs visualization
1398 i toggle indentation TABs visualization
1399 C-a toggle SPACEs after TAB visualization (via `indent-tabs-mode')
1400 A toggle SPACEs after TAB: SPACEs visualization
1401 a toggle SPACEs after TAB: TABs visualization
1402 C-b toggle SPACEs before TAB visualization (via `indent-tabs-mode')
1403 B toggle SPACEs before TAB: SPACEs visualization
1404 b toggle SPACEs before TAB: TABs visualization
1407 T toggle TAB visualization
1408 S toggle SPACEs before TAB visualization
1409 N toggle NEWLINE visualization
1411 x restore `whitespace-style' value
1412 ? display brief help
1414 Non-interactively, ARG should be a symbol or a list of symbols.
1415 The valid symbols are:
1417 face toggle face visualization
1418 tabs toggle TAB visualization
1419 spaces toggle SPACE and HARD SPACE visualization
1420 trailing toggle trailing blanks visualization
1421 lines toggle \"long lines\" visualization
1422 lines-tail toggle \"long lines\" tail visualization
1423 newline toggle NEWLINE visualization
1424 empty toggle empty line at bob and/or eob visualization
1425 indentation toggle indentation SPACEs visualization
1426 indentation::tab toggle indentation SPACEs visualization
1427 indentation::space toggle indentation TABs visualization
1428 space-after-tab toggle SPACEs after TAB visualization
1429 space-after-tab::tab toggle SPACEs after TAB: SPACEs visualization
1430 space-after-tab::space toggle SPACEs after TAB: TABs visualization
1431 space-before-tab toggle SPACEs before TAB visualization
1432 space-before-tab::tab toggle SPACEs before TAB: SPACEs visualization
1433 space-before-tab::space toggle SPACEs before TAB: TABs visualization
1435 tab-mark toggle TAB visualization
1436 space-mark toggle SPACEs before TAB visualization
1437 newline-mark toggle NEWLINE visualization
1439 whitespace-style restore `whitespace-style' value
1441 See `whitespace-style' and `indent-tabs-mode' for documentation."
1442 (interactive (whitespace-interactive-char nil
))
1443 (let ((whitespace-style
1444 (whitespace-toggle-list nil arg whitespace-toggle-style
)))
1445 (setq whitespace-toggle-style whitespace-style
)
1446 (global-whitespace-mode 0)
1447 (global-whitespace-mode 1)))
1450 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1451 ;;;; User commands - Cleanup
1455 (defun whitespace-cleanup ()
1456 "Cleanup some blank problems in all buffer or at region.
1458 It usually applies to the whole buffer, but in transient mark
1459 mode when the mark is active, it applies to the region. It also
1460 applies to the region when it is not in transient mark mode, the
1461 mark is active and \\[universal-argument] was pressed just before
1462 calling `whitespace-cleanup' interactively.
1464 See also `whitespace-cleanup-region'.
1466 The problems cleaned up are:
1468 1. empty lines at beginning of buffer.
1469 2. empty lines at end of buffer.
1470 If `whitespace-style' includes the value `empty', remove all
1471 empty lines at beginning and/or end of buffer.
1473 3. 8 or more SPACEs at beginning of line.
1474 If `whitespace-style' includes the value `indentation':
1475 replace 8 or more SPACEs at beginning of line by TABs, if
1476 `indent-tabs-mode' is non-nil; otherwise, replace TABs by
1478 If `whitespace-style' includes the value `indentation::tab',
1479 replace 8 or more SPACEs at beginning of line by TABs.
1480 If `whitespace-style' includes the value `indentation::space',
1481 replace TABs by SPACEs.
1483 4. SPACEs before TAB.
1484 If `whitespace-style' includes the value `space-before-tab':
1485 replace SPACEs by TABs, if `indent-tabs-mode' is non-nil;
1486 otherwise, replace TABs by SPACEs.
1487 If `whitespace-style' includes the value
1488 `space-before-tab::tab', replace SPACEs by TABs.
1489 If `whitespace-style' includes the value
1490 `space-before-tab::space', replace TABs by SPACEs.
1492 5. SPACEs or TABs at end of line.
1493 If `whitespace-style' includes the value `trailing', remove
1494 all SPACEs or TABs at end of line.
1496 6. 8 or more SPACEs after TAB.
1497 If `whitespace-style' includes the value `space-after-tab':
1498 replace SPACEs by TABs, if `indent-tabs-mode' is non-nil;
1499 otherwise, replace TABs by SPACEs.
1500 If `whitespace-style' includes the value
1501 `space-after-tab::tab', replace SPACEs by TABs.
1502 If `whitespace-style' includes the value
1503 `space-after-tab::space', replace TABs by SPACEs.
1505 See `whitespace-style', `indent-tabs-mode' and `tab-width' for
1511 (whitespace-warn-read-only "cleanup"))
1513 ((and (or transient-mark-mode
1516 ;; PROBLEMs 1 and 2 are not handled in region
1517 ;; PROBLEM 3: 8 or more SPACEs at bol
1518 ;; PROBLEM 4: SPACEs before TAB
1519 ;; PROBLEM 5: SPACEs or TABs at eol
1520 ;; PROBLEM 6: 8 or more SPACEs after TAB
1521 (whitespace-cleanup-region (region-beginning) (region-end)))
1525 (save-match-data ;FIXME: Why?
1526 ;; PROBLEM 1: empty lines at bob
1527 ;; PROBLEM 2: empty lines at eob
1528 ;; ACTION: remove all empty lines at bob and/or eob
1529 (when (memq 'empty whitespace-style
)
1530 (let (overwrite-mode) ; enforce no overwrite
1531 (goto-char (point-min))
1532 (when (re-search-forward
1533 (concat "\\`" whitespace-empty-at-bob-regexp
) nil t
)
1534 (delete-region (match-beginning 1) (match-end 1)))
1535 (when (re-search-forward
1536 (concat whitespace-empty-at-eob-regexp
"\\'") nil t
)
1537 (delete-region (match-beginning 1) (match-end 1)))))))
1538 ;; PROBLEM 3: 8 or more SPACEs at bol
1539 ;; PROBLEM 4: SPACEs before TAB
1540 ;; PROBLEM 5: SPACEs or TABs at eol
1541 ;; PROBLEM 6: 8 or more SPACEs after TAB
1542 (whitespace-cleanup-region (point-min) (point-max)))))
1546 (defun whitespace-cleanup-region (start end
)
1547 "Cleanup some blank problems at region.
1549 The problems cleaned up are:
1551 1. 8 or more SPACEs at beginning of line.
1552 If `whitespace-style' includes the value `indentation':
1553 replace 8 or more SPACEs at beginning of line by TABs, if
1554 `indent-tabs-mode' is non-nil; otherwise, replace TABs by
1556 If `whitespace-style' includes the value `indentation::tab',
1557 replace 8 or more SPACEs at beginning of line by TABs.
1558 If `whitespace-style' includes the value `indentation::space',
1559 replace TABs by SPACEs.
1561 2. SPACEs before TAB.
1562 If `whitespace-style' includes the value `space-before-tab':
1563 replace SPACEs by TABs, if `indent-tabs-mode' is non-nil;
1564 otherwise, replace TABs by SPACEs.
1565 If `whitespace-style' includes the value
1566 `space-before-tab::tab', replace SPACEs by TABs.
1567 If `whitespace-style' includes the value
1568 `space-before-tab::space', replace TABs by SPACEs.
1570 3. SPACEs or TABs at end of line.
1571 If `whitespace-style' includes the value `trailing', remove
1572 all SPACEs or TABs at end of line.
1574 4. 8 or more SPACEs after TAB.
1575 If `whitespace-style' includes the value `space-after-tab':
1576 replace SPACEs by TABs, if `indent-tabs-mode' is non-nil;
1577 otherwise, replace TABs by SPACEs.
1578 If `whitespace-style' includes the value
1579 `space-after-tab::tab', replace SPACEs by TABs.
1580 If `whitespace-style' includes the value
1581 `space-after-tab::space', replace TABs by SPACEs.
1583 See `whitespace-style', `indent-tabs-mode' and `tab-width' for
1586 (if buffer-read-only
1588 (whitespace-warn-read-only "cleanup region")
1589 ;; non-read-only buffer
1590 (let ((rstart (min start end
))
1591 (rend (copy-marker (max start end
)))
1592 (indent-tabs-mode whitespace-indent-tabs-mode
)
1593 (tab-width whitespace-tab-width
)
1594 overwrite-mode
; enforce no overwrite
1597 (save-match-data ;FIXME: Why?
1598 ;; PROBLEM 1: 8 or more SPACEs at bol
1600 ;; ACTION: replace 8 or more SPACEs at bol by TABs, if
1601 ;; `indent-tabs-mode' is non-nil; otherwise, replace TABs
1603 ((memq 'indentation whitespace-style
)
1604 (let ((regexp (whitespace-indentation-regexp)))
1606 (while (re-search-forward regexp rend t
)
1607 (setq tmp
(current-indentation))
1608 (goto-char (match-beginning 0))
1609 (delete-horizontal-space)
1612 ;; ACTION: replace 8 or more SPACEs at bol by TABs.
1613 ((memq 'indentation
::tab whitespace-style
)
1614 (whitespace-replace-action
1616 (whitespace-indentation-regexp 'tab
) 0))
1617 ;; ACTION: replace TABs by SPACEs.
1618 ((memq 'indentation
::space whitespace-style
)
1619 (whitespace-replace-action
1620 'untabify rstart rend
1621 (whitespace-indentation-regexp 'space
) 0)))
1622 ;; PROBLEM 3: SPACEs or TABs at eol
1623 ;; ACTION: remove all SPACEs or TABs at eol
1624 (when (memq 'trailing whitespace-style
)
1625 (whitespace-replace-action
1626 'delete-region rstart rend
1627 whitespace-trailing-regexp
1))
1628 ;; PROBLEM 4: 8 or more SPACEs after TAB
1630 ;; ACTION: replace 8 or more SPACEs by TABs, if
1631 ;; `indent-tabs-mode' is non-nil; otherwise, replace TABs
1633 ((memq 'space-after-tab whitespace-style
)
1634 (whitespace-replace-action
1635 (if whitespace-indent-tabs-mode
'tabify
'untabify
)
1636 rstart rend
(whitespace-space-after-tab-regexp) 1))
1637 ;; ACTION: replace 8 or more SPACEs by TABs.
1638 ((memq 'space-after-tab
::tab whitespace-style
)
1639 (whitespace-replace-action
1641 (whitespace-space-after-tab-regexp 'tab
) 1))
1642 ;; ACTION: replace TABs by SPACEs.
1643 ((memq 'space-after-tab
::space whitespace-style
)
1644 (whitespace-replace-action
1645 'untabify rstart rend
1646 (whitespace-space-after-tab-regexp 'space
) 1)))
1647 ;; PROBLEM 2: SPACEs before TAB
1649 ;; ACTION: replace SPACEs before TAB by TABs, if
1650 ;; `indent-tabs-mode' is non-nil; otherwise, replace TABs
1652 ((memq 'space-before-tab whitespace-style
)
1653 (whitespace-replace-action
1654 (if whitespace-indent-tabs-mode
'tabify
'untabify
)
1655 rstart rend whitespace-space-before-tab-regexp
1656 (if whitespace-indent-tabs-mode
0 2)))
1657 ;; ACTION: replace SPACEs before TAB by TABs.
1658 ((memq 'space-before-tab
::tab whitespace-style
)
1659 (whitespace-replace-action
1661 whitespace-space-before-tab-regexp
0))
1662 ;; ACTION: replace TABs by SPACEs.
1663 ((memq 'space-before-tab
::space whitespace-style
)
1664 (whitespace-replace-action
1665 'untabify rstart rend
1666 whitespace-space-before-tab-regexp
2)))))
1667 (set-marker rend nil
)))) ; point marker to nowhere
1670 (defun whitespace-replace-action (action rstart rend regexp index
)
1671 "Do ACTION in the string matched by REGEXP between RSTART and REND.
1673 INDEX is the level group matched by REGEXP and used by ACTION.
1675 See also `tab-width'."
1677 (while (re-search-forward regexp rend t
)
1678 (goto-char (match-end index
))
1679 (funcall action
(match-beginning index
) (match-end index
))))
1682 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1683 ;;;; User command - report
1686 (defun whitespace-regexp (regexp &optional kind
)
1687 "Return REGEXP depending on `whitespace-indent-tabs-mode'."
1690 whitespace-indent-tabs-mode
)
1691 (format (car regexp
) whitespace-tab-width
))
1692 ((or (eq kind
'space
)
1693 (not whitespace-indent-tabs-mode
))
1697 (defun whitespace-indentation-regexp (&optional kind
)
1698 "Return the indentation regexp depending on `whitespace-indent-tabs-mode'."
1699 (whitespace-regexp whitespace-indentation-regexp kind
))
1702 (defun whitespace-space-after-tab-regexp (&optional kind
)
1703 "Return the space-after-tab regexp depending on `whitespace-indent-tabs-mode'."
1704 (whitespace-regexp whitespace-space-after-tab-regexp kind
))
1707 (defconst whitespace-report-list
1709 (cons 'empty whitespace-empty-at-bob-regexp
)
1710 (cons 'empty whitespace-empty-at-eob-regexp
)
1711 (cons 'trailing whitespace-trailing-regexp
)
1712 (cons 'indentation nil
)
1713 (cons 'indentation
::tab nil
)
1714 (cons 'indentation
::space nil
)
1715 (cons 'space-before-tab whitespace-space-before-tab-regexp
)
1716 (cons 'space-before-tab
::tab whitespace-space-before-tab-regexp
)
1717 (cons 'space-before-tab
::space whitespace-space-before-tab-regexp
)
1718 (cons 'space-after-tab nil
)
1719 (cons 'space-after-tab
::tab nil
)
1720 (cons 'space-after-tab
::space nil
)
1722 "List of whitespace bogus symbol and corresponding regexp.")
1725 (defconst whitespace-report-text
1726 '( ;; `indent-tabs-mode' has non-nil value
1730 Current Setting Whitespace Problem
1732 empty [] [] empty lines at beginning of buffer
1733 empty [] [] empty lines at end of buffer
1734 trailing [] [] SPACEs or TABs at end of line
1735 indentation [] [] 8 or more SPACEs at beginning of line
1736 indentation::tab [] [] 8 or more SPACEs at beginning of line
1737 indentation::space [] [] TABs at beginning of line
1738 space-before-tab [] [] SPACEs before TAB
1739 space-before-tab::tab [] [] SPACEs before TAB: SPACEs
1740 space-before-tab::space [] [] SPACEs before TAB: TABs
1741 space-after-tab [] [] 8 or more SPACEs after TAB
1742 space-after-tab::tab [] [] 8 or more SPACEs after TAB: SPACEs
1743 space-after-tab::space [] [] 8 or more SPACEs after TAB: TABs
1747 .
;; `indent-tabs-mode' has nil value
1751 Current Setting Whitespace Problem
1753 empty [] [] empty lines at beginning of buffer
1754 empty [] [] empty lines at end of buffer
1755 trailing [] [] SPACEs or TABs at end of line
1756 indentation [] [] TABs at beginning of line
1757 indentation::tab [] [] 8 or more SPACEs at beginning of line
1758 indentation::space [] [] TABs at beginning of line
1759 space-before-tab [] [] SPACEs before TAB
1760 space-before-tab::tab [] [] SPACEs before TAB: SPACEs
1761 space-before-tab::space [] [] SPACEs before TAB: TABs
1762 space-after-tab [] [] 8 or more SPACEs after TAB
1763 space-after-tab::tab [] [] 8 or more SPACEs after TAB: SPACEs
1764 space-after-tab::space [] [] 8 or more SPACEs after TAB: TABs
1768 "Text for whitespace bogus report.
1770 It is a cons of strings, where the car part is used when
1771 `indent-tabs-mode' is non-nil, and the cdr part is used when
1772 `indent-tabs-mode' is nil.")
1775 (defconst whitespace-report-buffer-name
"*Whitespace Report*"
1776 "The buffer name for whitespace bogus report.")
1780 (defun whitespace-report (&optional force report-if-bogus
)
1781 "Report some whitespace problems in buffer.
1783 Return nil if there is no whitespace problem; otherwise, return
1786 If FORCE is non-nil or \\[universal-argument] was pressed just
1787 before calling `whitespace-report' interactively, it forces
1788 `whitespace-style' to have:
1796 If REPORT-IF-BOGUS is non-nil, it reports only when there are any
1797 whitespace problems in buffer.
1799 Report if some of the following whitespace problems exist:
1801 * If `indent-tabs-mode' is non-nil:
1802 empty 1. empty lines at beginning of buffer.
1803 empty 2. empty lines at end of buffer.
1804 trailing 3. SPACEs or TABs at end of line.
1805 indentation 4. 8 or more SPACEs at beginning of line.
1806 space-before-tab 5. SPACEs before TAB.
1807 space-after-tab 6. 8 or more SPACEs after TAB.
1809 * If `indent-tabs-mode' is nil:
1810 empty 1. empty lines at beginning of buffer.
1811 empty 2. empty lines at end of buffer.
1812 trailing 3. SPACEs or TABs at end of line.
1813 indentation 4. TABS at beginning of line.
1814 space-before-tab 5. SPACEs before TAB.
1815 space-after-tab 6. 8 or more SPACEs after TAB.
1817 See `whitespace-style' for documentation.
1818 See also `whitespace-cleanup' and `whitespace-cleanup-region' for
1819 cleaning up these problems."
1820 (interactive (list current-prefix-arg
))
1821 (whitespace-report-region (point-min) (point-max)
1822 force report-if-bogus
))
1826 (defun whitespace-report-region (start end
&optional force report-if-bogus
)
1827 "Report some whitespace problems in a region.
1829 Return nil if there is no whitespace problem; otherwise, return
1832 If FORCE is non-nil or \\[universal-argument] was pressed just
1833 before calling `whitespace-report-region' interactively, it
1834 forces `whitespace-style' to have:
1842 If REPORT-IF-BOGUS is non-nil, it reports only when there are any
1843 whitespace problems in buffer.
1845 Report if some of the following whitespace problems exist:
1847 * If `indent-tabs-mode' is non-nil:
1848 empty 1. empty lines at beginning of buffer.
1849 empty 2. empty lines at end of buffer.
1850 trailing 3. SPACEs or TABs at end of line.
1851 indentation 4. 8 or more SPACEs at beginning of line.
1852 space-before-tab 5. SPACEs before TAB.
1853 space-after-tab 6. 8 or more SPACEs after TAB.
1855 * If `indent-tabs-mode' is nil:
1856 empty 1. empty lines at beginning of buffer.
1857 empty 2. empty lines at end of buffer.
1858 trailing 3. SPACEs or TABs at end of line.
1859 indentation 4. TABS at beginning of line.
1860 space-before-tab 5. SPACEs before TAB.
1861 space-after-tab 6. 8 or more SPACEs after TAB.
1863 See `whitespace-style' for documentation.
1864 See also `whitespace-cleanup' and `whitespace-cleanup-region' for
1865 cleaning up these problems."
1867 (setq force
(or current-prefix-arg force
))
1869 (save-match-data ;FIXME: Why?
1870 (let* ((has-bogus nil
)
1871 (rstart (min start end
))
1872 (rend (max start end
))
1877 (add-to-list 'whitespace-style
(car option
)))
1881 ((eq (car option
) 'indentation
)
1882 (whitespace-indentation-regexp))
1883 ((eq (car option
) 'indentation
::tab
)
1884 (whitespace-indentation-regexp 'tab
))
1885 ((eq (car option
) 'indentation
::space
)
1886 (whitespace-indentation-regexp 'space
))
1887 ((eq (car option
) 'space-after-tab
)
1888 (whitespace-space-after-tab-regexp))
1889 ((eq (car option
) 'space-after-tab
::tab
)
1890 (whitespace-space-after-tab-regexp 'tab
))
1891 ((eq (car option
) 'space-after-tab
::space
)
1892 (whitespace-space-after-tab-regexp 'space
))
1895 (and (re-search-forward regexp rend t
)
1896 (setq has-bogus t
))))
1897 whitespace-report-list
)))
1898 (when (if report-if-bogus has-bogus t
)
1899 (whitespace-kill-buffer whitespace-report-buffer-name
)
1900 ;; `whitespace-indent-tabs-mode' is local to current buffer
1901 ;; `whitespace-tab-width' is local to current buffer
1902 (let ((ws-indent-tabs-mode whitespace-indent-tabs-mode
)
1903 (ws-tab-width whitespace-tab-width
))
1904 (with-current-buffer (get-buffer-create
1905 whitespace-report-buffer-name
)
1907 (insert (if ws-indent-tabs-mode
1908 (car whitespace-report-text
)
1909 (cdr whitespace-report-text
)))
1910 (goto-char (point-min))
1912 (dolist (option whitespace-report-list
)
1915 27 (memq (car option
) whitespace-style
))
1916 (whitespace-mark-x 7 (car bogus-list
))
1917 (setq bogus-list
(cdr bogus-list
)))
1919 (whitespace-insert-value ws-indent-tabs-mode
)
1920 (whitespace-insert-value ws-tab-width
)
1922 (goto-char (point-max))
1923 (insert " Type `M-x whitespace-cleanup'"
1924 " to cleanup the buffer.\n\n"
1925 " Type `M-x whitespace-cleanup-region'"
1926 " to cleanup a region.\n\n"))
1927 (whitespace-display-window (current-buffer)))))
1931 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1932 ;;;; Internal functions
1935 (defvar whitespace-font-lock-mode nil
1936 "Used to remember whether a buffer had font lock mode on or not.")
1938 (defvar whitespace-font-lock nil
1939 "Used to remember whether a buffer initially had font lock on or not.")
1941 (defvar whitespace-font-lock-keywords nil
1942 "Used to save locally `font-lock-keywords' value.")
1945 (defconst whitespace-help-text
1947 Whitespace Toggle Options | scroll up : SPC or > |
1948 | scroll down: M-SPC or < |
1949 FACES \\__________________________/
1950 [] f - toggle face visualization
1951 [] t - toggle TAB visualization
1952 [] s - toggle SPACE and HARD SPACE visualization
1953 [] r - toggle trailing blanks visualization
1954 [] l - toggle \"long lines\" visualization
1955 [] L - toggle \"long lines\" tail visualization
1956 [] n - toggle NEWLINE visualization
1957 [] e - toggle empty line at bob and/or eob visualization
1958 [] C-i - toggle indentation SPACEs visualization (via `indent-tabs-mode')
1959 [] I - toggle indentation SPACEs visualization
1960 [] i - toggle indentation TABs visualization
1961 [] C-a - toggle SPACEs after TAB visualization (via `indent-tabs-mode')
1962 [] A - toggle SPACEs after TAB: SPACEs visualization
1963 [] a - toggle SPACEs after TAB: TABs visualization
1964 [] C-b - toggle SPACEs before TAB visualization (via `indent-tabs-mode')
1965 [] B - toggle SPACEs before TAB: SPACEs visualization
1966 [] b - toggle SPACEs before TAB: TABs visualization
1969 [] T - toggle TAB visualization
1970 [] S - toggle SPACE and HARD SPACE visualization
1971 [] N - toggle NEWLINE visualization
1973 x - restore `whitespace-style' value
1975 ? - display this text\n\n"
1976 "Text for whitespace toggle options.")
1979 (defconst whitespace-help-buffer-name
"*Whitespace Toggle Options*"
1980 "The buffer name for whitespace toggle options.")
1983 (defun whitespace-insert-value (value)
1984 "Insert VALUE at column 20 of next line."
1986 (move-to-column 20 t
)
1987 (insert (format "%s" value
)))
1990 (defun whitespace-mark-x (nchars condition
)
1991 "Insert the mark ('X' or ' ') after NCHARS depending on CONDITION."
1992 (forward-char nchars
)
1993 (insert (if condition
"X" " ")))
1996 (defun whitespace-insert-option-mark (the-list the-value
)
1997 "Insert the option mark ('X' or ' ') in toggle options buffer."
1998 (goto-char (point-min))
2000 (dolist (sym the-list
)
2001 (if (eq sym
'help-newline
)
2004 (whitespace-mark-x 2 (memq sym the-value
)))))
2007 (defun whitespace-help-on (style)
2008 "Display the whitespace toggle options."
2009 (unless (get-buffer whitespace-help-buffer-name
)
2010 (delete-other-windows)
2011 (let ((buffer (get-buffer-create whitespace-help-buffer-name
)))
2012 (with-current-buffer buffer
2014 (insert whitespace-help-text
)
2015 (whitespace-insert-option-mark
2016 whitespace-style-value-list style
)
2017 (whitespace-display-window buffer
)))))
2020 (defun whitespace-display-window (buffer)
2021 "Display BUFFER in a new window."
2022 (goto-char (point-min))
2023 (set-buffer-modified-p nil
)
2024 (when (< (window-height) (* 2 window-min-height
))
2025 (kill-buffer buffer
)
2026 (error "Window height is too small; \
2027 can't split window to display whitespace toggle options"))
2028 (let ((win (split-window)))
2029 (set-window-buffer win buffer
)
2030 (shrink-window-if-larger-than-buffer win
)))
2033 (defun whitespace-kill-buffer (buffer-name)
2034 "Kill buffer BUFFER-NAME and windows related with it."
2035 (let ((buffer (get-buffer buffer-name
)))
2037 (delete-windows-on buffer
)
2038 (kill-buffer buffer
))))
2041 (defun whitespace-help-off ()
2042 "Remove the buffer and window of the whitespace toggle options."
2043 (whitespace-kill-buffer whitespace-help-buffer-name
))
2046 (defun whitespace-help-scroll (&optional up
)
2047 "Scroll help window, if it exists.
2049 If UP is non-nil, scroll up; otherwise, scroll down."
2051 (let ((buffer (get-buffer whitespace-help-buffer-name
)))
2053 (with-selected-window (get-buffer-window buffer
)
2060 ;; just ignore error
2064 (defun whitespace-interactive-char (local-p)
2065 "Interactive function to read a char and return a symbol.
2067 If LOCAL-P is non-nil, it uses a local context; otherwise, it
2068 uses a global context.
2070 It accepts one of the following chars:
2074 f toggle face visualization
2075 t toggle TAB visualization
2076 s toggle SPACE and HARD SPACE visualization
2077 r toggle trailing blanks visualization
2078 l toggle \"long lines\" visualization
2079 L toggle \"long lines\" tail visualization
2080 n toggle NEWLINE visualization
2081 e toggle empty line at bob and/or eob visualization
2082 C-i toggle indentation SPACEs visualization (via `indent-tabs-mode')
2083 I toggle indentation SPACEs visualization
2084 i toggle indentation TABs visualization
2085 C-a toggle SPACEs after TAB visualization (via `indent-tabs-mode')
2086 A toggle SPACEs after TAB: SPACEs visualization
2087 a toggle SPACEs after TAB: TABs visualization
2088 C-b toggle SPACEs before TAB visualization (via `indent-tabs-mode')
2089 B toggle SPACEs before TAB: SPACEs visualization
2090 b toggle SPACEs before TAB: TABs visualization
2093 T toggle TAB visualization
2094 S toggle SPACE and HARD SPACE visualization
2095 N toggle NEWLINE visualization
2097 x restore `whitespace-style' value
2098 ? display brief help
2100 See also `whitespace-toggle-option-alist'."
2101 (let* ((is-off (not (if local-p
2103 global-whitespace-mode
)))
2104 (style (cond (is-off whitespace-style
) ; use default value
2105 (local-p whitespace-active-style
)
2106 (t whitespace-toggle-style
)))
2108 (format "Whitespace Toggle %s (type ? for further options)-"
2109 (if local-p
"Local" "Global")))
2111 ;; read a valid option and get the corresponding symbol
2112 (save-window-excursion
2113 (condition-case data
2118 (setq ch
(read-char prompt
))
2122 (assq ch whitespace-toggle-option-alist
)))))
2125 ((eq ch ?
\?) (whitespace-help-on style
))
2126 ((eq ch ?\
) (whitespace-help-scroll t
))
2127 ((eq ch ?\M-
) (whitespace-help-scroll))
2128 ((eq ch ?
>) (whitespace-help-scroll t
))
2129 ((eq ch ?
<) (whitespace-help-scroll))
2131 (whitespace-help-off)
2132 (message " ")) ; clean echo area
2135 (whitespace-help-off)
2136 (error (error-message-string data
)))))
2137 (list sym
))) ; return the appropriate symbol
2140 (defun whitespace-toggle-list (local-p arg the-list
)
2141 "Toggle options in THE-LIST based on list ARG.
2143 If LOCAL-P is non-nil, it uses a local context; otherwise, it
2144 uses a global context.
2146 ARG is a list of options to be toggled.
2148 THE-LIST is a list of options. This list will be toggled and the
2149 resultant list will be returned."
2150 (unless (if local-p whitespace-mode global-whitespace-mode
)
2151 (setq the-list whitespace-style
))
2152 (setq the-list
(copy-sequence the-list
)) ; keep original list
2153 (dolist (sym (if (listp arg
) arg
(list arg
)))
2155 ;; ignore help value
2156 ((eq sym
'help-newline
))
2157 ;; restore default values
2158 ((eq sym
'whitespace-style
)
2159 (setq the-list whitespace-style
))
2160 ;; toggle valid values
2161 ((memq sym whitespace-style-value-list
)
2162 (setq the-list
(if (memq sym the-list
)
2164 (cons sym the-list
))))))
2168 (defvar whitespace-display-table nil
2169 "Used to save a local display table.")
2171 (defvar whitespace-display-table-was-local nil
2172 "Used to remember whether a buffer initially had a local display table.")
2175 (defun whitespace-turn-on ()
2176 "Turn on whitespace visualization."
2177 ;; prepare local hooks
2178 (add-hook 'write-file-functions
'whitespace-write-file-hook nil t
)
2179 ;; create whitespace local buffer environment
2180 (set (make-local-variable 'whitespace-font-lock-mode
) nil
)
2181 (set (make-local-variable 'whitespace-font-lock
) nil
)
2182 (set (make-local-variable 'whitespace-font-lock-keywords
) nil
)
2183 (set (make-local-variable 'whitespace-display-table
) nil
)
2184 (set (make-local-variable 'whitespace-display-table-was-local
) nil
)
2185 (set (make-local-variable 'whitespace-active-style
)
2186 (if (listp whitespace-style
)
2188 (list whitespace-style
)))
2189 (set (make-local-variable 'whitespace-indent-tabs-mode
)
2191 (set (make-local-variable 'whitespace-tab-width
)
2193 ;; turn on whitespace
2194 (when whitespace-active-style
2195 (whitespace-color-on)
2196 (whitespace-display-char-on)))
2199 (defun whitespace-turn-off ()
2200 "Turn off whitespace visualization."
2201 (remove-hook 'write-file-functions
'whitespace-write-file-hook t
)
2202 (when whitespace-active-style
2203 (whitespace-color-off)
2204 (whitespace-display-char-off)))
2207 (defun whitespace-style-face-p ()
2208 "Return t if there is some visualization via face."
2209 (and (memq 'face whitespace-active-style
)
2210 (or (memq 'tabs whitespace-active-style
)
2211 (memq 'spaces whitespace-active-style
)
2212 (memq 'trailing whitespace-active-style
)
2213 (memq 'lines whitespace-active-style
)
2214 (memq 'lines-tail whitespace-active-style
)
2215 (memq 'newline whitespace-active-style
)
2216 (memq 'empty whitespace-active-style
)
2217 (memq 'indentation whitespace-active-style
)
2218 (memq 'indentation
::tab whitespace-active-style
)
2219 (memq 'indentation
::space whitespace-active-style
)
2220 (memq 'space-after-tab whitespace-active-style
)
2221 (memq 'space-after-tab
::tab whitespace-active-style
)
2222 (memq 'space-after-tab
::space whitespace-active-style
)
2223 (memq 'space-before-tab whitespace-active-style
)
2224 (memq 'space-before-tab
::tab whitespace-active-style
)
2225 (memq 'space-before-tab
::space whitespace-active-style
))))
2228 (defun whitespace-color-on ()
2229 "Turn on color visualization."
2230 (when (whitespace-style-face-p)
2231 (unless whitespace-font-lock
2232 (setq whitespace-font-lock t
2233 whitespace-font-lock-keywords
2234 (copy-sequence font-lock-keywords
)))
2235 ;; save current point and refontify when necessary
2236 (set (make-local-variable 'whitespace-point
)
2238 (set (make-local-variable 'whitespace-font-lock-refontify
)
2240 (set (make-local-variable 'whitespace-bob-marker
)
2242 (set (make-local-variable 'whitespace-eob-marker
)
2244 (set (make-local-variable 'whitespace-buffer-changed
)
2246 (add-hook 'post-command-hook
#'whitespace-post-command-hook nil t
)
2247 (add-hook 'before-change-functions
#'whitespace-buffer-changed nil t
)
2248 ;; turn off font lock
2249 (set (make-local-variable 'whitespace-font-lock-mode
)
2252 ;; add whitespace-mode color into font lock
2253 (when (memq 'spaces whitespace-active-style
)
2254 (font-lock-add-keywords
2258 (list whitespace-space-regexp
1 whitespace-space t
)
2260 (list whitespace-hspace-regexp
1 whitespace-hspace t
))
2262 (when (memq 'tabs whitespace-active-style
)
2263 (font-lock-add-keywords
2267 (list whitespace-tab-regexp
1 whitespace-tab t
))
2269 (when (memq 'trailing whitespace-active-style
)
2270 (font-lock-add-keywords
2273 ;; Show trailing blanks
2274 (list #'whitespace-trailing-regexp
1 whitespace-trailing t
))
2276 (when (or (memq 'lines whitespace-active-style
)
2277 (memq 'lines-tail whitespace-active-style
))
2278 (font-lock-add-keywords
2281 ;; Show "long" lines
2283 (let ((line-column (or whitespace-line-column fill-column
)))
2285 "^\\([^\t\n]\\{%s\\}\\|[^\t\n]\\{0,%s\\}\t\\)\\{%d\\}%s\\(.+\\)$"
2286 whitespace-tab-width
2287 (1- whitespace-tab-width
)
2288 (/ line-column whitespace-tab-width
)
2289 (let ((rem (% line-column whitespace-tab-width
)))
2292 (format ".\\{%d\\}" rem
)))))
2293 (if (memq 'lines whitespace-active-style
)
2299 ((memq 'space-before-tab whitespace-active-style
)
2300 (font-lock-add-keywords
2303 ;; Show SPACEs before TAB (indent-tabs-mode)
2304 (list whitespace-space-before-tab-regexp
2305 (if whitespace-indent-tabs-mode
1 2)
2306 whitespace-space-before-tab t
))
2308 ((memq 'space-before-tab
::tab whitespace-active-style
)
2309 (font-lock-add-keywords
2312 ;; Show SPACEs before TAB (SPACEs)
2313 (list whitespace-space-before-tab-regexp
2314 1 whitespace-space-before-tab t
))
2316 ((memq 'space-before-tab
::space whitespace-active-style
)
2317 (font-lock-add-keywords
2320 ;; Show SPACEs before TAB (TABs)
2321 (list whitespace-space-before-tab-regexp
2322 2 whitespace-space-before-tab t
))
2325 ((memq 'indentation whitespace-active-style
)
2326 (font-lock-add-keywords
2329 ;; Show indentation SPACEs (indent-tabs-mode)
2330 (list (whitespace-indentation-regexp)
2331 1 whitespace-indentation t
))
2333 ((memq 'indentation
::tab whitespace-active-style
)
2334 (font-lock-add-keywords
2337 ;; Show indentation SPACEs (SPACEs)
2338 (list (whitespace-indentation-regexp 'tab
)
2339 1 whitespace-indentation t
))
2341 ((memq 'indentation
::space whitespace-active-style
)
2342 (font-lock-add-keywords
2345 ;; Show indentation SPACEs (TABs)
2346 (list (whitespace-indentation-regexp 'space
)
2347 1 whitespace-indentation t
))
2349 (when (memq 'empty whitespace-active-style
)
2350 (font-lock-add-keywords
2353 ;; Show empty lines at beginning of buffer
2354 (list #'whitespace-empty-at-bob-regexp
2355 1 whitespace-empty t
))
2357 (font-lock-add-keywords
2360 ;; Show empty lines at end of buffer
2361 (list #'whitespace-empty-at-eob-regexp
2362 1 whitespace-empty t
))
2365 ((memq 'space-after-tab whitespace-active-style
)
2366 (font-lock-add-keywords
2369 ;; Show SPACEs after TAB (indent-tabs-mode)
2370 (list (whitespace-space-after-tab-regexp)
2371 1 whitespace-space-after-tab t
))
2373 ((memq 'space-after-tab
::tab whitespace-active-style
)
2374 (font-lock-add-keywords
2377 ;; Show SPACEs after TAB (SPACEs)
2378 (list (whitespace-space-after-tab-regexp 'tab
)
2379 1 whitespace-space-after-tab t
))
2381 ((memq 'space-after-tab
::space whitespace-active-style
)
2382 (font-lock-add-keywords
2385 ;; Show SPACEs after TAB (TABs)
2386 (list (whitespace-space-after-tab-regexp 'space
)
2387 1 whitespace-space-after-tab t
))
2389 ;; now turn on font lock and highlight blanks
2390 (font-lock-mode 1)))
2393 (defun whitespace-color-off ()
2394 "Turn off color visualization."
2395 ;; turn off font lock
2396 (when (whitespace-style-face-p)
2398 (remove-hook 'post-command-hook
#'whitespace-post-command-hook t
)
2399 (remove-hook 'before-change-functions
#'whitespace-buffer-changed t
)
2400 (when whitespace-font-lock
2401 (setq whitespace-font-lock nil
2402 font-lock-keywords whitespace-font-lock-keywords
))
2403 ;; restore original font lock state
2404 (font-lock-mode whitespace-font-lock-mode
)))
2407 (defun whitespace-trailing-regexp (limit)
2408 "Match trailing spaces which do not contain the point at end of line."
2410 (while (if (re-search-forward whitespace-trailing-regexp limit t
)
2411 (= whitespace-point
(match-end 1)) ;; loop if point at eol
2412 (setq status nil
))) ;; end of buffer
2416 (defun whitespace-empty-at-bob-regexp (limit)
2417 "Match spaces at beginning of buffer which do not contain the point at \
2418 beginning of buffer."
2424 (setq r
(and (/= whitespace-point
1)
2425 (looking-at whitespace-empty-at-bob-regexp
)))
2426 (set-marker whitespace-bob-marker
(if r
(match-end 1) b
)))
2427 ;; inside bob empty region
2428 ((<= limit whitespace-bob-marker
)
2429 (setq r
(looking-at whitespace-empty-at-bob-regexp
))
2431 (when (< (match-end 1) limit
)
2432 (set-marker whitespace-bob-marker
(match-end 1)))
2433 (set-marker whitespace-bob-marker b
)))
2434 ;; intersection with end of bob empty region
2435 ((<= b whitespace-bob-marker
)
2436 (setq r
(looking-at whitespace-empty-at-bob-regexp
))
2437 (set-marker whitespace-bob-marker
(if r
(match-end 1) b
)))
2438 ;; it is not inside bob empty region
2441 ;; move to end of matching
2442 (and r
(goto-char (match-end 1)))
2446 (defsubst whitespace-looking-back
(regexp limit
)
2448 (when (/= 0 (skip-chars-backward " \t\n" limit
))
2451 (looking-at regexp
))))
2454 (defun whitespace-empty-at-eob-regexp (limit)
2455 "Match spaces at end of buffer which do not contain the point at end of \
2458 (e (1+ (buffer-size)))
2463 (when (/= whitespace-point e
)
2465 (setq r
(whitespace-looking-back whitespace-empty-at-eob-regexp b
)))
2467 (set-marker whitespace-eob-marker
(match-beginning 1))
2468 (set-marker whitespace-eob-marker limit
)
2469 (goto-char b
))) ; return back to initial position
2470 ;; inside eob empty region
2471 ((>= b whitespace-eob-marker
)
2473 (setq r
(whitespace-looking-back whitespace-empty-at-eob-regexp b
))
2475 (when (> (match-beginning 1) b
)
2476 (set-marker whitespace-eob-marker
(match-beginning 1)))
2477 (set-marker whitespace-eob-marker limit
)
2478 (goto-char b
))) ; return back to initial position
2479 ;; intersection with beginning of eob empty region
2480 ((>= limit whitespace-eob-marker
)
2482 (setq r
(whitespace-looking-back whitespace-empty-at-eob-regexp b
))
2484 (set-marker whitespace-eob-marker
(match-beginning 1))
2485 (set-marker whitespace-eob-marker limit
)
2486 (goto-char b
))) ; return back to initial position
2487 ;; it is not inside eob empty region
2493 (defun whitespace-buffer-changed (_beg _end
)
2494 "Set `whitespace-buffer-changed' variable to t."
2495 (setq whitespace-buffer-changed t
))
2498 (defun whitespace-post-command-hook ()
2499 "Save current point into `whitespace-point' variable.
2500 Also refontify when necessary."
2501 (setq whitespace-point
(point)) ; current point position
2504 ;; it is at end of line ...
2506 ;; ... with trailing SPACE or TAB
2507 (or (= (preceding-char) ?\
)
2508 (= (preceding-char) ?
\t)))
2509 ;; it is at beginning of buffer (bob)
2510 (= whitespace-point
1)
2511 ;; the buffer was modified and ...
2512 (and whitespace-buffer-changed
2514 ;; ... or inside bob whitespace region
2515 (<= whitespace-point whitespace-bob-marker
)
2516 ;; ... or at bob whitespace region border
2517 (and (= whitespace-point
(1+ whitespace-bob-marker
))
2518 (= (preceding-char) ?
\n))))
2519 ;; it is at end of buffer (eob)
2520 (= whitespace-point
(1+ (buffer-size)))
2521 ;; the buffer was modified and ...
2522 (and whitespace-buffer-changed
2524 ;; ... or inside eob whitespace region
2525 (>= whitespace-point whitespace-eob-marker
)
2526 ;; ... or at eob whitespace region border
2527 (and (= whitespace-point
(1- whitespace-eob-marker
))
2528 (= (following-char) ?
\n)))))))
2529 (when (or refontify
(> whitespace-font-lock-refontify
0))
2530 (setq whitespace-buffer-changed nil
)
2531 ;; adjust refontify counter
2532 (setq whitespace-font-lock-refontify
2535 (1- whitespace-font-lock-refontify
)))
2537 (jit-lock-refontify))))
2540 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2541 ;;;; Hacked from visws.el (Miles Bader <miles@gnu.org>)
2544 (defun whitespace-style-mark-p ()
2545 "Return t if there is some visualization via display table."
2546 (or (memq 'tab-mark whitespace-active-style
)
2547 (memq 'space-mark whitespace-active-style
)
2548 (memq 'newline-mark whitespace-active-style
)))
2551 (defsubst whitespace-char-valid-p
(char)
2552 ;; This check should be improved!!!
2557 (defun whitespace-display-vector-p (vec)
2558 "Return true if every character in vector VEC can be displayed."
2559 (let ((i (length vec
)))
2561 (while (and (>= (setq i
(1- i
)) 0)
2562 (whitespace-char-valid-p (aref vec i
))))
2566 (defun whitespace-display-char-on ()
2567 "Turn on character display mapping."
2568 (when (and whitespace-display-mappings
2569 (whitespace-style-mark-p))
2571 ;; Remember whether a buffer has a local display table.
2572 (unless whitespace-display-table-was-local
2573 (setq whitespace-display-table-was-local t
2574 whitespace-display-table
2575 (copy-sequence buffer-display-table
))
2576 ;; Assure `buffer-display-table' is unique
2577 ;; when two or more windows are visible.
2578 (setq buffer-display-table
2579 (copy-sequence buffer-display-table
)))
2580 (unless buffer-display-table
2581 (setq buffer-display-table
(make-display-table)))
2582 (dolist (entry whitespace-display-mappings
)
2583 ;; check if it is to display this mark
2584 (when (memq (car entry
) whitespace-style
)
2585 ;; Get a displayable mapping.
2586 (setq vecs
(cddr entry
))
2588 (not (whitespace-display-vector-p (car vecs
))))
2589 (setq vecs
(cdr vecs
)))
2590 ;; Display a valid mapping.
2592 (setq vec
(copy-sequence (car vecs
)))
2594 (when (and (eq (cadr entry
) ?
\n)
2595 (memq 'newline whitespace-active-style
))
2596 ;; Only insert face bits on NEWLINE char mapping to avoid
2597 ;; obstruction of other faces like TABs and (HARD) SPACEs
2598 ;; faces, font-lock faces, etc.
2599 (dotimes (i (length vec
))
2600 (or (eq (aref vec i
) ?
\n)
2602 (make-glyph-code (aref vec i
)
2603 whitespace-newline
)))))
2605 (aset buffer-display-table
(cadr entry
) vec
)))))))
2608 (defun whitespace-display-char-off ()
2609 "Turn off character display mapping."
2610 (and whitespace-display-mappings
2611 (whitespace-style-mark-p)
2612 whitespace-display-table-was-local
2613 (setq whitespace-display-table-was-local nil
2614 buffer-display-table whitespace-display-table
)))
2617 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2621 (defun whitespace-action-when-on ()
2622 "Action to be taken always when local whitespace is turned on."
2623 (cond ((memq 'cleanup whitespace-action
)
2624 (whitespace-cleanup))
2625 ((memq 'report-on-bogus whitespace-action
)
2626 (whitespace-report nil t
))))
2629 (defun whitespace-write-file-hook ()
2630 "Action to be taken when buffer is written.
2631 It should be added buffer-locally to `write-file-functions'."
2632 (cond ((memq 'auto-cleanup whitespace-action
)
2633 (whitespace-cleanup))
2634 ((memq 'abort-on-bogus whitespace-action
)
2635 (when (whitespace-report nil t
)
2636 (error "Abort write due to whitespace problems in %s"
2638 nil
) ; continue hook processing
2641 (defun whitespace-warn-read-only (msg)
2642 "Warn if buffer is read-only."
2643 (when (memq 'warn-if-read-only whitespace-action
)
2644 (message "Can't %s: %s is read-only" msg
(buffer-name))))
2647 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2650 (defun whitespace-unload-function ()
2651 "Unload the whitespace library."
2652 (global-whitespace-mode -
1)
2653 ;; be sure all local whitespace mode is turned off
2654 (save-current-buffer
2655 (dolist (buf (buffer-list))
2657 (whitespace-mode -
1)))
2658 nil
) ; continue standard unloading
2661 (provide 'whitespace
)
2664 (run-hooks 'whitespace-load-hook
)
2667 ;;; whitespace.el ends here