1 ;;; whitespace.el --- minor mode to visualize TAB, (HARD) SPACE, NEWLINE
3 ;; Copyright (C) 2000-2013 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 mode line).
170 ;; `global-whitespace-newline-mode'
171 ;; Toggle NEWLINE global minor mode visualization ("NL" on mode line).
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
)))
557 (defvar whitespace-space
'whitespace-space
558 "Symbol face used to visualize SPACE.
559 Used when `whitespace-style' includes the value `spaces'.")
560 (make-obsolete-variable 'whitespace-space
"use the face instead" "24.4")
563 (defface whitespace-space
564 '((((class color
) (background dark
))
565 :background
"grey20" :foreground
"darkgray")
566 (((class color
) (background light
))
567 :background
"LightYellow" :foreground
"lightgray")
568 (t :inverse-video t
))
569 "Face used to visualize SPACE."
573 (defvar whitespace-hspace
'whitespace-hspace
574 "Symbol face used to visualize HARD SPACE.
575 Used when `whitespace-style' includes the value `spaces'.")
576 (make-obsolete-variable 'whitespace-hspace
"use the face instead" "24.4")
578 (defface whitespace-hspace
; 'nobreak-space
579 '((((class color
) (background dark
))
580 :background
"grey24" :foreground
"darkgray")
581 (((class color
) (background light
))
582 :background
"LemonChiffon3" :foreground
"lightgray")
583 (t :inverse-video t
))
584 "Face used to visualize HARD SPACE."
588 (defvar whitespace-tab
'whitespace-tab
589 "Symbol face used to visualize TAB.
590 Used when `whitespace-style' includes the value `tabs'.")
591 (make-obsolete-variable 'whitespace-tab
"use the face instead" "24.4")
593 (defface whitespace-tab
594 '((((class color
) (background dark
))
595 :background
"grey22" :foreground
"darkgray")
596 (((class color
) (background light
))
597 :background
"beige" :foreground
"lightgray")
598 (t :inverse-video t
))
599 "Face used to visualize TAB."
603 (defvar whitespace-newline
'whitespace-newline
604 "Symbol face used to visualize NEWLINE char mapping.
605 See `whitespace-display-mappings'.
606 Used when `whitespace-style' includes the values `newline-mark'
608 (make-obsolete-variable 'whitespace-newline
"use the face instead" "24.4")
610 (defface whitespace-newline
611 '((default :weight normal
)
612 (((class color
) (background dark
)) :foreground
"darkgray")
613 (((class color
) (min-colors 88) (background light
)) :foreground
"lightgray")
614 ;; Displays with 16 colors use lightgray as background, so using a
615 ;; lightgray foreground makes the newline mark invisible.
616 (((class color
) (background light
)) :foreground
"brown")
618 "Face used to visualize NEWLINE char mapping.
620 See `whitespace-display-mappings'."
624 (defvar whitespace-trailing
'whitespace-trailing
625 "Symbol face used to visualize trailing blanks.
626 Used when `whitespace-style' includes the value `trailing'.")
627 (make-obsolete-variable 'whitespace-trailing
"use the face instead" "24.4")
629 (defface whitespace-trailing
; 'trailing-whitespace
630 '((default :weight bold
)
631 (((class mono
)) :inverse-video t
:underline t
)
632 (t :background
"red1" :foreground
"yellow"))
633 "Face used to visualize trailing blanks."
637 (defvar whitespace-line
'whitespace-line
638 "Symbol face used to visualize \"long\" lines.
639 See `whitespace-line-column'.
640 Used when `whitespace-style' includes the value `line'.")
641 (make-obsolete-variable 'whitespace-line
"use the face instead" "24.4")
643 (defface whitespace-line
644 '((((class mono
)) :inverse-video t
:weight bold
:underline t
)
645 (t :background
"gray20" :foreground
"violet"))
646 "Face used to visualize \"long\" lines.
648 See `whitespace-line-column'."
652 (defvar whitespace-space-before-tab
'whitespace-space-before-tab
653 "Symbol face used to visualize SPACEs before TAB.
654 Used when `whitespace-style' includes the value `space-before-tab'.")
655 (make-obsolete-variable 'whitespace-space-before-tab
656 "use the face instead" "24.4")
658 (defface whitespace-space-before-tab
659 '((((class mono
)) :inverse-video t
:weight bold
:underline t
)
660 (t :background
"DarkOrange" :foreground
"firebrick"))
661 "Face used to visualize SPACEs before TAB."
665 (defvar whitespace-indentation
'whitespace-indentation
666 "Symbol face used to visualize 8 or more SPACEs at beginning of line.
667 Used when `whitespace-style' includes the value `indentation'.")
668 (make-obsolete-variable 'whitespace-indentation
"use the face instead" "24.4")
670 (defface whitespace-indentation
671 '((((class mono
)) :inverse-video t
:weight bold
:underline t
)
672 (t :background
"yellow" :foreground
"firebrick"))
673 "Face used to visualize 8 or more SPACEs at beginning of line."
677 (defvar whitespace-empty
'whitespace-empty
678 "Symbol face used to visualize empty lines at beginning and/or end of buffer.
679 Used when `whitespace-style' includes the value `empty'.")
680 (make-obsolete-variable 'whitespace-empty
"use the face instead" "24.4")
682 (defface whitespace-empty
683 '((((class mono
)) :inverse-video t
:weight bold
:underline t
)
684 (t :background
"yellow" :foreground
"firebrick"))
685 "Face used to visualize empty lines at beginning and/or end of buffer."
689 (defvar whitespace-space-after-tab
'whitespace-space-after-tab
690 "Symbol face used to visualize 8 or more SPACEs after TAB.
691 Used when `whitespace-style' includes the value `space-after-tab'.")
692 (make-obsolete-variable 'whitespace-space-after-tab
693 "use the face instead" "24.4")
695 (defface whitespace-space-after-tab
696 '((((class mono
)) :inverse-video t
:weight bold
:underline t
)
697 (t :background
"yellow" :foreground
"firebrick"))
698 "Face used to visualize 8 or more SPACEs after TAB."
702 (defcustom whitespace-hspace-regexp
704 "Specify HARD SPACE characters regexp.
706 Here are some examples:
708 \"\\\\(^\\xA0+\\\\)\" \
709 visualize only leading HARD SPACEs.
710 \"\\\\(\\xA0+$\\\\)\" \
711 visualize only trailing HARD SPACEs.
712 \"\\\\(^\\xA0+\\\\|\\xA0+$\\\\)\" \
713 visualize leading and/or trailing HARD SPACEs.
714 \"\\t\\\\(\\xA0+\\\\)\\t\" \
715 visualize only HARD SPACEs between TABs.
717 NOTE: Enclose always by \\\\( and \\\\) the elements to highlight.
718 Use exactly one pair of enclosing \\\\( and \\\\).
720 Used when `whitespace-style' includes `spaces'."
721 :type
'(regexp :tag
"HARD SPACE Chars")
725 (defcustom whitespace-space-regexp
"\\( +\\)"
726 "Specify SPACE characters regexp.
728 If you're using `mule' package, there may be other characters
729 besides \" \" that should be considered SPACE.
731 Here are some examples:
733 \"\\\\(^ +\\\\)\" visualize only leading SPACEs.
734 \"\\\\( +$\\\\)\" visualize only trailing SPACEs.
735 \"\\\\(^ +\\\\| +$\\\\)\" \
736 visualize leading and/or trailing SPACEs.
737 \"\\t\\\\( +\\\\)\\t\" visualize only SPACEs between TABs.
739 NOTE: Enclose always by \\\\( and \\\\) the elements to highlight.
740 Use exactly one pair of enclosing \\\\( and \\\\).
742 Used when `whitespace-style' includes `spaces'."
743 :type
'(regexp :tag
"SPACE Chars")
747 (defcustom whitespace-tab-regexp
"\\(\t+\\)"
748 "Specify TAB characters regexp.
750 If you're using `mule' package, there may be other characters
751 besides \"\\t\" that should be considered TAB.
753 Here are some examples:
755 \"\\\\(^\\t+\\\\)\" visualize only leading TABs.
756 \"\\\\(\\t+$\\\\)\" visualize only trailing TABs.
757 \"\\\\(^\\t+\\\\|\\t+$\\\\)\" \
758 visualize leading and/or trailing TABs.
759 \" \\\\(\\t+\\\\) \" visualize only TABs between SPACEs.
761 NOTE: Enclose always by \\\\( and \\\\) the elements to highlight.
762 Use exactly one pair of enclosing \\\\( and \\\\).
764 Used when `whitespace-style' includes `tabs'."
765 :type
'(regexp :tag
"TAB Chars")
769 (defcustom whitespace-trailing-regexp
770 "\\([\t \u00A0]+\\)$"
771 "Specify trailing characters regexp.
773 There may be other characters besides:
775 \" \" \"\\t\" \"\\u00A0\"
777 that should be considered blank.
779 NOTE: Enclose always by \"\\\\(\" and \"\\\\)$\" the elements to highlight.
780 Use exactly one pair of enclosing elements above.
782 Used when `whitespace-style' includes `trailing'."
783 :type
'(regexp :tag
"Trailing Chars")
787 (defcustom whitespace-space-before-tab-regexp
"\\( +\\)\\(\t+\\)"
788 "Specify SPACEs before TAB regexp.
790 Used when `whitespace-style' includes `space-before-tab',
791 `space-before-tab::tab' or `space-before-tab::space'."
792 :type
'(regexp :tag
"SPACEs Before TAB")
796 (defcustom whitespace-indentation-regexp
797 '("^\t*\\(\\( \\{%d\\}\\)+\\)[^\n\t]"
798 .
"^ *\\(\t+\\)[^\n]")
799 "Specify regexp for 8 or more SPACEs at beginning of line.
801 It is a cons where the cons car is used for SPACEs visualization
802 and the cons cdr is used for TABs visualization.
804 Used when `whitespace-style' includes `indentation',
805 `indentation::tab' or `indentation::space'."
806 :type
'(cons (regexp :tag
"Indentation SPACEs")
807 (regexp :tag
"Indentation TABs"))
811 (defcustom whitespace-empty-at-bob-regexp
"^\\(\\([ \t]*\n\\)+\\)"
812 "Specify regexp for empty lines at beginning of buffer.
814 Used when `whitespace-style' includes `empty'."
815 :type
'(regexp :tag
"Empty Lines At Beginning Of Buffer")
819 (defcustom whitespace-empty-at-eob-regexp
"^\\([ \t\n]+\\)"
820 "Specify regexp for empty lines at end of buffer.
822 Used when `whitespace-style' includes `empty'."
823 :type
'(regexp :tag
"Empty Lines At End Of Buffer")
827 (defcustom whitespace-space-after-tab-regexp
828 '("\t+\\(\\( \\{%d\\}\\)+\\)"
830 "Specify regexp for 8 or more SPACEs after TAB.
832 It is a cons where the cons car is used for SPACEs visualization
833 and the cons cdr is used for TABs visualization.
835 Used when `whitespace-style' includes `space-after-tab',
836 `space-after-tab::tab' or `space-after-tab::space'."
837 :type
'(regexp :tag
"SPACEs After TAB")
841 (defcustom whitespace-line-column
80
842 "Specify column beyond which the line is highlighted.
844 It must be an integer or nil. If nil, the `fill-column' variable value is
847 Used when `whitespace-style' includes `lines' or `lines-tail'."
848 :type
'(choice :tag
"Line Length Limit"
849 (integer :tag
"Line Length")
850 (const :tag
"Use fill-column" nil
))
854 ;; Hacked from `visible-whitespace-mappings' in visws.el
855 (defcustom whitespace-display-mappings
857 (space-mark ?\
[?
\u00B7] [?.
]) ; space - centered dot
858 (space-mark ?
\xA0 [?
\u00A4] [?_
]) ; hard space - currency
859 ;; NEWLINE is displayed using the face `whitespace-newline'
860 (newline-mark ?
\n [?$ ?
\n]) ; eol - dollar sign
861 ;; (newline-mark ?\n [?\u21B5 ?\n] [?$ ?\n]) ; eol - downwards arrow
862 ;; (newline-mark ?\n [?\u00B6 ?\n] [?$ ?\n]) ; eol - pilcrow
863 ;; (newline-mark ?\n [?\u00AF ?\n] [?$ ?\n]) ; eol - overscore
864 ;; (newline-mark ?\n [?\u00AC ?\n] [?$ ?\n]) ; eol - negation
865 ;; (newline-mark ?\n [?\u00B0 ?\n] [?$ ?\n]) ; eol - degrees
867 ;; WARNING: the mapping below has a problem.
868 ;; When a TAB occupies exactly one column, it will display the
869 ;; character ?\xBB at that column followed by a TAB which goes to
870 ;; the next TAB column.
871 ;; If this is a problem for you, please, comment the line below.
872 (tab-mark ?
\t [?
\u00BB ?
\t] [?
\\ ?
\t]) ; tab - left quote mark
874 "Specify an alist of mappings for displaying characters.
876 Each element has the following form:
878 (KIND CHAR VECTOR...)
882 KIND is the kind of character.
883 It can be one of the following symbols:
885 tab-mark for TAB character
887 space-mark for SPACE or HARD SPACE character
889 newline-mark for NEWLINE character
891 CHAR is the character to be mapped.
893 VECTOR is a vector of characters to be displayed in place of CHAR.
894 The first display vector that can be displayed is used;
895 if no display vector for a mapping can be displayed, then
896 that character is displayed unmodified.
898 The NEWLINE character is displayed using the face given by
899 `whitespace-newline' variable.
901 Used when `whitespace-style' includes `tab-mark', `space-mark' or
904 (list :tag
"Character Mapping"
905 (choice :tag
"Char Kind"
906 (const :tag
"Tab" tab-mark
)
907 (const :tag
"Space" space-mark
)
908 (const :tag
"Newline" newline-mark
))
909 (character :tag
"Char")
910 (repeat :inline t
:tag
"Vector List"
913 :tag
"Vector Characters"
914 (character :tag
"Char"))))))
918 (defcustom whitespace-global-modes t
919 "Modes for which global `whitespace-mode' is automagically turned on.
921 Global `whitespace-mode' is controlled by the command
922 `global-whitespace-mode'.
924 If nil, means no modes have `whitespace-mode' automatically
927 If t, all modes that support `whitespace-mode' have it
928 automatically turned on.
930 Else it should be a list of `major-mode' symbol names for which
931 `whitespace-mode' should be automatically turned on. The sense
932 of the list is negated if it begins with `not'. For example:
936 means that `whitespace-mode' is turned on for buffers in C and
938 :type
'(choice :tag
"Global Modes"
939 (const :tag
"None" nil
)
941 (set :menu-tag
"Mode Specific" :tag
"Modes"
943 (const :tag
"Except" not
)
945 (symbol :tag
"Mode"))))
949 (defcustom whitespace-action nil
950 "Specify which action is taken when a buffer is visited or written.
952 It's a list containing some or all of the following values:
954 nil no action is taken.
956 cleanup cleanup any bogus whitespace always when local
957 whitespace is turned on.
958 See `whitespace-cleanup' and
959 `whitespace-cleanup-region'.
961 report-on-bogus report if there is any bogus whitespace always
962 when local whitespace is turned on.
964 auto-cleanup cleanup any bogus whitespace when buffer is
966 See `whitespace-cleanup' and
967 `whitespace-cleanup-region'.
969 abort-on-bogus abort if there is any bogus whitespace and the
972 warn-if-read-only give a warning if `cleanup' or `auto-cleanup'
973 is included in `whitespace-action' and the
976 Any other value is treated as nil."
977 :type
'(choice :tag
"Actions"
978 (const :tag
"None" nil
)
979 (repeat :tag
"Action List"
980 (choice :tag
"Action"
981 (const :tag
"Cleanup When On" cleanup
)
982 (const :tag
"Report On Bogus" report-on-bogus
)
983 (const :tag
"Auto Cleanup" auto-cleanup
)
984 (const :tag
"Abort On Bogus" abort-on-bogus
)
985 (const :tag
"Warn If Read-Only" warn-if-read-only
))))
989 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
990 ;;;; User commands - Local mode
994 (define-minor-mode whitespace-mode
995 "Toggle whitespace visualization (Whitespace mode).
996 With a prefix argument ARG, enable Whitespace mode if ARG is
997 positive, and disable it otherwise. If called from Lisp, enable
998 the mode if ARG is omitted or nil.
1000 See also `whitespace-style', `whitespace-newline' and
1001 `whitespace-display-mappings'."
1007 (noninteractive ; running a batch job
1008 (setq whitespace-mode nil
))
1009 (whitespace-mode ; whitespace-mode on
1010 (whitespace-turn-on)
1011 (whitespace-action-when-on))
1012 (t ; whitespace-mode off
1013 (whitespace-turn-off))))
1017 (define-minor-mode whitespace-newline-mode
1018 "Toggle newline visualization (Whitespace Newline mode).
1019 With a prefix argument ARG, enable Whitespace Newline mode if ARG
1020 is positive, and disable it otherwise. If called from Lisp,
1021 enable the mode if ARG is omitted or nil.
1023 Use `whitespace-newline-mode' only for NEWLINE visualization
1024 exclusively. For other visualizations, including NEWLINE
1025 visualization together with (HARD) SPACEs and/or TABs, please,
1026 use `whitespace-mode'.
1028 See also `whitespace-newline' and `whitespace-display-mappings'."
1033 (let ((whitespace-style '(face newline-mark newline
)))
1034 (whitespace-mode (if whitespace-newline-mode
1036 ;; sync states (running a batch job)
1037 (setq whitespace-newline-mode whitespace-mode
))
1040 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1041 ;;;; User commands - Global mode
1045 (define-minor-mode global-whitespace-mode
1046 "Toggle whitespace visualization globally (Global Whitespace mode).
1047 With a prefix argument ARG, enable Global Whitespace mode if ARG
1048 is positive, and disable it otherwise. If called from Lisp,
1049 enable it if ARG is omitted or nil.
1051 See also `whitespace-style', `whitespace-newline' and
1052 `whitespace-display-mappings'."
1058 (noninteractive ; running a batch job
1059 (setq global-whitespace-mode nil
))
1060 (global-whitespace-mode ; global-whitespace-mode on
1061 (save-current-buffer
1062 (add-hook 'find-file-hook
'whitespace-turn-on-if-enabled
)
1063 (add-hook 'after-change-major-mode-hook
'whitespace-turn-on-if-enabled
)
1064 (dolist (buffer (buffer-list)) ; adjust all local mode
1066 (unless whitespace-mode
1067 (whitespace-turn-on-if-enabled)))))
1068 (t ; global-whitespace-mode off
1069 (save-current-buffer
1070 (remove-hook 'find-file-hook
'whitespace-turn-on-if-enabled
)
1071 (remove-hook 'after-change-major-mode-hook
'whitespace-turn-on-if-enabled
)
1072 (dolist (buffer (buffer-list)) ; adjust all local mode
1074 (unless whitespace-mode
1075 (whitespace-turn-off)))))))
1077 (defvar whitespace-enable-predicate
1080 ((eq whitespace-global-modes t
))
1081 ((listp whitespace-global-modes
)
1082 (if (eq (car-safe whitespace-global-modes
) 'not
)
1083 (not (memq major-mode
(cdr whitespace-global-modes
)))
1084 (memq major-mode whitespace-global-modes
)))
1086 ;; ...we have a display (we're running a batch job)
1087 (not noninteractive
)
1088 ;; ...the buffer is not internal (name starts with a space)
1089 (not (eq (aref (buffer-name) 0) ?\
))
1090 ;; ...the buffer is not special (name starts with *)
1091 (or (not (eq (aref (buffer-name) 0) ?
*))
1092 ;; except the scratch buffer.
1093 (string= (buffer-name) "*scratch*"))))
1094 "Predicate to decide which buffers obey `global-whitespace-mode'.
1095 This function is called with no argument and should return non-nil
1096 if the current buffer should obey `global-whitespace-mode'.
1097 This variable is normally modified via `add-function'.")
1099 (defun whitespace-turn-on-if-enabled ()
1100 (when (funcall whitespace-enable-predicate
)
1101 (whitespace-turn-on)))
1104 (define-minor-mode global-whitespace-newline-mode
1105 "Toggle global newline visualization (Global Whitespace Newline mode).
1106 With a prefix argument ARG, enable Global Whitespace Newline mode
1107 if ARG is positive, and disable it otherwise. If called from
1108 Lisp, enable it if ARG is omitted or nil.
1110 Use `global-whitespace-newline-mode' only for NEWLINE
1111 visualization exclusively. For other visualizations, including
1112 NEWLINE visualization together with (HARD) SPACEs and/or TABs,
1113 please use `global-whitespace-mode'.
1115 See also `whitespace-newline' and `whitespace-display-mappings'."
1120 (let ((whitespace-style '(newline-mark newline
)))
1121 (global-whitespace-mode (if global-whitespace-newline-mode
1123 ;; sync states (running a batch job)
1124 (setq global-whitespace-newline-mode global-whitespace-mode
)))
1127 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1128 ;;;; User commands - Toggle
1131 (defconst whitespace-style-value-list
1144 space-after-tab
::tab
1145 space-after-tab
::space
1147 space-before-tab
::tab
1148 space-before-tab
::space
1149 help-newline
; value used by `whitespace-insert-option-mark'
1154 "List of valid `whitespace-style' values.")
1157 (defconst whitespace-toggle-option-alist
1166 (?\C-i . indentation
)
1167 (?I . indentation
::tab
)
1168 (?i . indentation
::space
)
1169 (?\C-a . space-after-tab
)
1170 (?A . space-after-tab
::tab
)
1171 (?a . space-after-tab
::space
)
1172 (?\C-b . space-before-tab
)
1173 (?B . space-before-tab
::tab
)
1174 (?b . space-before-tab
::space
)
1178 (?x . whitespace-style
)
1180 "Alist of toggle options.
1182 Each element has the form:
1188 CHAR is a char which the user will have to type.
1190 SYMBOL is a valid symbol associated with CHAR.
1191 See `whitespace-style-value-list'.")
1194 (defvar whitespace-active-style nil
1195 "Used to save locally `whitespace-style' value.")
1197 (defvar whitespace-indent-tabs-mode indent-tabs-mode
1198 "Used to save locally `indent-tabs-mode' value.")
1200 (defvar whitespace-tab-width tab-width
1201 "Used to save locally `tab-width' value.")
1203 (defvar whitespace-point
(point)
1204 "Used to save locally current point value.
1205 Used by function `whitespace-trailing-regexp' (which see).")
1207 (defvar whitespace-font-lock-refontify nil
1208 "Used to save locally the font-lock refontify state.
1209 Used by function `whitespace-post-command-hook' (which see).")
1211 (defvar whitespace-bob-marker nil
1212 "Used to save locally the bob marker value.
1213 Used by function `whitespace-post-command-hook' (which see).")
1215 (defvar whitespace-eob-marker nil
1216 "Used to save locally the eob marker value.
1217 Used by function `whitespace-post-command-hook' (which see).")
1219 (defvar whitespace-buffer-changed nil
1220 "Used to indicate locally if buffer changed.
1221 Used by `whitespace-post-command-hook' and `whitespace-buffer-changed'
1222 functions (which see).")
1226 (defun whitespace-toggle-options (arg)
1227 "Toggle local `whitespace-mode' options.
1229 If local whitespace-mode is off, toggle the option given by ARG
1230 and turn on local whitespace-mode.
1232 If local whitespace-mode is on, toggle the option given by ARG
1233 and restart local whitespace-mode.
1235 Interactively, it reads one of the following chars:
1239 f toggle face visualization
1240 t toggle TAB visualization
1241 s toggle SPACE and HARD SPACE visualization
1242 r toggle trailing blanks visualization
1243 l toggle \"long lines\" visualization
1244 L toggle \"long lines\" tail visualization
1245 n toggle NEWLINE visualization
1246 e toggle empty line at bob and/or eob visualization
1247 C-i toggle indentation SPACEs visualization (via `indent-tabs-mode')
1248 I toggle indentation SPACEs visualization
1249 i toggle indentation TABs visualization
1250 C-a toggle SPACEs after TAB visualization (via `indent-tabs-mode')
1251 A toggle SPACEs after TAB: SPACEs visualization
1252 a toggle SPACEs after TAB: TABs visualization
1253 C-b toggle SPACEs before TAB visualization (via `indent-tabs-mode')
1254 B toggle SPACEs before TAB: SPACEs visualization
1255 b toggle SPACEs before TAB: TABs visualization
1258 T toggle TAB visualization
1259 S toggle SPACEs before TAB visualization
1260 N toggle NEWLINE visualization
1262 x restore `whitespace-style' value
1263 ? display brief help
1265 Non-interactively, ARG should be a symbol or a list of symbols.
1266 The valid symbols are:
1268 face toggle face visualization
1269 tabs toggle TAB visualization
1270 spaces toggle SPACE and HARD SPACE visualization
1271 trailing toggle trailing blanks visualization
1272 lines toggle \"long lines\" visualization
1273 lines-tail toggle \"long lines\" tail visualization
1274 newline toggle NEWLINE visualization
1275 empty toggle empty line at bob and/or eob visualization
1276 indentation toggle indentation SPACEs visualization
1277 indentation::tab toggle indentation SPACEs visualization
1278 indentation::space toggle indentation TABs visualization
1279 space-after-tab toggle SPACEs after TAB visualization
1280 space-after-tab::tab toggle SPACEs after TAB: SPACEs visualization
1281 space-after-tab::space toggle SPACEs after TAB: TABs visualization
1282 space-before-tab toggle SPACEs before TAB visualization
1283 space-before-tab::tab toggle SPACEs before TAB: SPACEs visualization
1284 space-before-tab::space toggle SPACEs before TAB: TABs visualization
1286 tab-mark toggle TAB visualization
1287 space-mark toggle SPACEs before TAB visualization
1288 newline-mark toggle NEWLINE visualization
1290 whitespace-style restore `whitespace-style' value
1292 See `whitespace-style' and `indent-tabs-mode' for documentation."
1293 (interactive (whitespace-interactive-char t
))
1294 (let ((whitespace-style
1295 (whitespace-toggle-list t arg whitespace-active-style
)))
1297 (whitespace-mode 1)))
1300 (defvar whitespace-toggle-style nil
1301 "Used to toggle the global `whitespace-style' value.")
1305 (defun global-whitespace-toggle-options (arg)
1306 "Toggle global `whitespace-mode' options.
1308 If global whitespace-mode is off, toggle the option given by ARG
1309 and turn on global whitespace-mode.
1311 If global whitespace-mode is on, toggle the option given by ARG
1312 and restart global whitespace-mode.
1314 Interactively, it accepts one of the following chars:
1318 f toggle face visualization
1319 t toggle TAB visualization
1320 s toggle SPACE and HARD SPACE visualization
1321 r toggle trailing blanks visualization
1322 l toggle \"long lines\" visualization
1323 L toggle \"long lines\" tail visualization
1324 n toggle NEWLINE visualization
1325 e toggle empty line at bob and/or eob visualization
1326 C-i toggle indentation SPACEs visualization (via `indent-tabs-mode')
1327 I toggle indentation SPACEs visualization
1328 i toggle indentation TABs visualization
1329 C-a toggle SPACEs after TAB visualization (via `indent-tabs-mode')
1330 A toggle SPACEs after TAB: SPACEs visualization
1331 a toggle SPACEs after TAB: TABs visualization
1332 C-b toggle SPACEs before TAB visualization (via `indent-tabs-mode')
1333 B toggle SPACEs before TAB: SPACEs visualization
1334 b toggle SPACEs before TAB: TABs visualization
1337 T toggle TAB visualization
1338 S toggle SPACEs before TAB visualization
1339 N toggle NEWLINE visualization
1341 x restore `whitespace-style' value
1342 ? display brief help
1344 Non-interactively, ARG should be a symbol or a list of symbols.
1345 The valid symbols are:
1347 face toggle face visualization
1348 tabs toggle TAB visualization
1349 spaces toggle SPACE and HARD SPACE visualization
1350 trailing toggle trailing blanks visualization
1351 lines toggle \"long lines\" visualization
1352 lines-tail toggle \"long lines\" tail visualization
1353 newline toggle NEWLINE visualization
1354 empty toggle empty line at bob and/or eob visualization
1355 indentation toggle indentation SPACEs visualization
1356 indentation::tab toggle indentation SPACEs visualization
1357 indentation::space toggle indentation TABs visualization
1358 space-after-tab toggle SPACEs after TAB visualization
1359 space-after-tab::tab toggle SPACEs after TAB: SPACEs visualization
1360 space-after-tab::space toggle SPACEs after TAB: TABs visualization
1361 space-before-tab toggle SPACEs before TAB visualization
1362 space-before-tab::tab toggle SPACEs before TAB: SPACEs visualization
1363 space-before-tab::space toggle SPACEs before TAB: TABs visualization
1365 tab-mark toggle TAB visualization
1366 space-mark toggle SPACEs before TAB visualization
1367 newline-mark toggle NEWLINE visualization
1369 whitespace-style restore `whitespace-style' value
1371 See `whitespace-style' and `indent-tabs-mode' for documentation."
1372 (interactive (whitespace-interactive-char nil
))
1373 (let ((whitespace-style
1374 (whitespace-toggle-list nil arg whitespace-toggle-style
)))
1375 (setq whitespace-toggle-style whitespace-style
)
1376 (global-whitespace-mode 0)
1377 (global-whitespace-mode 1)))
1380 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1381 ;;;; User commands - Cleanup
1385 (defun whitespace-cleanup ()
1386 "Cleanup some blank problems in all buffer or at region.
1388 It usually applies to the whole buffer, but in transient mark
1389 mode when the mark is active, it applies to the region. It also
1390 applies to the region when it is not in transient mark mode, the
1391 mark is active and \\[universal-argument] was pressed just before
1392 calling `whitespace-cleanup' interactively.
1394 See also `whitespace-cleanup-region'.
1396 The problems cleaned up are:
1398 1. empty lines at beginning of buffer.
1399 2. empty lines at end of buffer.
1400 If `whitespace-style' includes the value `empty', remove all
1401 empty lines at beginning and/or end of buffer.
1403 3. 8 or more SPACEs at beginning of line.
1404 If `whitespace-style' includes the value `indentation':
1405 replace 8 or more SPACEs at beginning of line by TABs, if
1406 `indent-tabs-mode' is non-nil; otherwise, replace TABs by
1408 If `whitespace-style' includes the value `indentation::tab',
1409 replace 8 or more SPACEs at beginning of line by TABs.
1410 If `whitespace-style' includes the value `indentation::space',
1411 replace TABs by SPACEs.
1413 4. SPACEs before TAB.
1414 If `whitespace-style' includes the value `space-before-tab':
1415 replace SPACEs by TABs, if `indent-tabs-mode' is non-nil;
1416 otherwise, replace TABs by SPACEs.
1417 If `whitespace-style' includes the value
1418 `space-before-tab::tab', replace SPACEs by TABs.
1419 If `whitespace-style' includes the value
1420 `space-before-tab::space', replace TABs by SPACEs.
1422 5. SPACEs or TABs at end of line.
1423 If `whitespace-style' includes the value `trailing', remove
1424 all SPACEs or TABs at end of line.
1426 6. 8 or more SPACEs after TAB.
1427 If `whitespace-style' includes the value `space-after-tab':
1428 replace SPACEs by TABs, if `indent-tabs-mode' is non-nil;
1429 otherwise, replace TABs by SPACEs.
1430 If `whitespace-style' includes the value
1431 `space-after-tab::tab', replace SPACEs by TABs.
1432 If `whitespace-style' includes the value
1433 `space-after-tab::space', replace TABs by SPACEs.
1435 See `whitespace-style', `indent-tabs-mode' and `tab-width' for
1441 (whitespace-warn-read-only "cleanup"))
1443 ((and (or transient-mark-mode
1446 ;; PROBLEMs 1 and 2 are not handled in region
1447 ;; PROBLEM 3: 8 or more SPACEs at bol
1448 ;; PROBLEM 4: SPACEs before TAB
1449 ;; PROBLEM 5: SPACEs or TABs at eol
1450 ;; PROBLEM 6: 8 or more SPACEs after TAB
1451 (whitespace-cleanup-region (region-beginning) (region-end)))
1455 (save-match-data ;FIXME: Why?
1456 ;; PROBLEM 1: empty lines at bob
1457 ;; PROBLEM 2: empty lines at eob
1458 ;; ACTION: remove all empty lines at bob and/or eob
1459 (when (memq 'empty whitespace-style
)
1460 (let (overwrite-mode) ; enforce no overwrite
1461 (goto-char (point-min))
1462 (when (looking-at whitespace-empty-at-bob-regexp
)
1463 (delete-region (match-beginning 1) (match-end 1)))
1464 (when (re-search-forward
1465 (concat whitespace-empty-at-eob-regexp
"\\'") nil t
)
1466 (delete-region (match-beginning 1) (match-end 1)))))))
1467 ;; PROBLEM 3: 8 or more SPACEs at bol
1468 ;; PROBLEM 4: SPACEs before TAB
1469 ;; PROBLEM 5: SPACEs or TABs at eol
1470 ;; PROBLEM 6: 8 or more SPACEs after TAB
1471 (whitespace-cleanup-region (point-min) (point-max)))))
1475 (defun whitespace-cleanup-region (start end
)
1476 "Cleanup some blank problems at region.
1478 The problems cleaned up are:
1480 1. 8 or more SPACEs at beginning of line.
1481 If `whitespace-style' includes the value `indentation':
1482 replace 8 or more SPACEs at beginning of line by TABs, if
1483 `indent-tabs-mode' is non-nil; otherwise, replace TABs by
1485 If `whitespace-style' includes the value `indentation::tab',
1486 replace 8 or more SPACEs at beginning of line by TABs.
1487 If `whitespace-style' includes the value `indentation::space',
1488 replace TABs by SPACEs.
1490 2. SPACEs before TAB.
1491 If `whitespace-style' includes the value `space-before-tab':
1492 replace SPACEs by TABs, if `indent-tabs-mode' is non-nil;
1493 otherwise, replace TABs by SPACEs.
1494 If `whitespace-style' includes the value
1495 `space-before-tab::tab', replace SPACEs by TABs.
1496 If `whitespace-style' includes the value
1497 `space-before-tab::space', replace TABs by SPACEs.
1499 3. SPACEs or TABs at end of line.
1500 If `whitespace-style' includes the value `trailing', remove
1501 all SPACEs or TABs at end of line.
1503 4. 8 or more SPACEs after TAB.
1504 If `whitespace-style' includes the value `space-after-tab':
1505 replace SPACEs by TABs, if `indent-tabs-mode' is non-nil;
1506 otherwise, replace TABs by SPACEs.
1507 If `whitespace-style' includes the value
1508 `space-after-tab::tab', replace SPACEs by TABs.
1509 If `whitespace-style' includes the value
1510 `space-after-tab::space', replace TABs by SPACEs.
1512 See `whitespace-style', `indent-tabs-mode' and `tab-width' for
1515 (if buffer-read-only
1517 (whitespace-warn-read-only "cleanup region")
1518 ;; non-read-only buffer
1519 (let ((rstart (min start end
))
1520 (rend (copy-marker (max start end
)))
1521 (indent-tabs-mode whitespace-indent-tabs-mode
)
1522 (tab-width whitespace-tab-width
)
1523 overwrite-mode
; enforce no overwrite
1526 (save-match-data ;FIXME: Why?
1527 ;; PROBLEM 1: 8 or more SPACEs at bol
1529 ;; ACTION: replace 8 or more SPACEs at bol by TABs, if
1530 ;; `indent-tabs-mode' is non-nil; otherwise, replace TABs
1532 ((memq 'indentation whitespace-style
)
1533 (let ((regexp (whitespace-indentation-regexp)))
1535 (while (re-search-forward regexp rend t
)
1536 (setq tmp
(current-indentation))
1537 (goto-char (match-beginning 0))
1538 (delete-horizontal-space)
1541 ;; ACTION: replace 8 or more SPACEs at bol by TABs.
1542 ((memq 'indentation
::tab whitespace-style
)
1543 (whitespace-replace-action
1545 (whitespace-indentation-regexp 'tab
) 0))
1546 ;; ACTION: replace TABs by SPACEs.
1547 ((memq 'indentation
::space whitespace-style
)
1548 (whitespace-replace-action
1549 'untabify rstart rend
1550 (whitespace-indentation-regexp 'space
) 0)))
1551 ;; PROBLEM 3: SPACEs or TABs at eol
1552 ;; ACTION: remove all SPACEs or TABs at eol
1553 (when (memq 'trailing whitespace-style
)
1554 (whitespace-replace-action
1555 'delete-region rstart rend
1556 whitespace-trailing-regexp
1))
1557 ;; PROBLEM 4: 8 or more SPACEs after TAB
1559 ;; ACTION: replace 8 or more SPACEs by TABs, if
1560 ;; `indent-tabs-mode' is non-nil; otherwise, replace TABs
1562 ((memq 'space-after-tab whitespace-style
)
1563 (whitespace-replace-action
1564 (if whitespace-indent-tabs-mode
'tabify
'untabify
)
1565 rstart rend
(whitespace-space-after-tab-regexp) 1))
1566 ;; ACTION: replace 8 or more SPACEs by TABs.
1567 ((memq 'space-after-tab
::tab whitespace-style
)
1568 (whitespace-replace-action
1570 (whitespace-space-after-tab-regexp 'tab
) 1))
1571 ;; ACTION: replace TABs by SPACEs.
1572 ((memq 'space-after-tab
::space whitespace-style
)
1573 (whitespace-replace-action
1574 'untabify rstart rend
1575 (whitespace-space-after-tab-regexp 'space
) 1)))
1576 ;; PROBLEM 2: SPACEs before TAB
1578 ;; ACTION: replace SPACEs before TAB by TABs, if
1579 ;; `indent-tabs-mode' is non-nil; otherwise, replace TABs
1581 ((memq 'space-before-tab whitespace-style
)
1582 (whitespace-replace-action
1583 (if whitespace-indent-tabs-mode
'tabify
'untabify
)
1584 rstart rend whitespace-space-before-tab-regexp
1585 (if whitespace-indent-tabs-mode
0 2)))
1586 ;; ACTION: replace SPACEs before TAB by TABs.
1587 ((memq 'space-before-tab
::tab whitespace-style
)
1588 (whitespace-replace-action
1590 whitespace-space-before-tab-regexp
0))
1591 ;; ACTION: replace TABs by SPACEs.
1592 ((memq 'space-before-tab
::space whitespace-style
)
1593 (whitespace-replace-action
1594 'untabify rstart rend
1595 whitespace-space-before-tab-regexp
2)))))
1596 (set-marker rend nil
)))) ; point marker to nowhere
1599 (defun whitespace-replace-action (action rstart rend regexp index
)
1600 "Do ACTION in the string matched by REGEXP between RSTART and REND.
1602 INDEX is the level group matched by REGEXP and used by ACTION.
1604 See also `tab-width'."
1606 (while (re-search-forward regexp rend t
)
1607 (goto-char (match-end index
))
1608 (funcall action
(match-beginning index
) (match-end index
))))
1611 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1612 ;;;; User command - report
1615 (defun whitespace-regexp (regexp &optional kind
)
1616 "Return REGEXP depending on `whitespace-indent-tabs-mode'."
1619 whitespace-indent-tabs-mode
)
1620 (format (car regexp
) whitespace-tab-width
))
1621 ((or (eq kind
'space
)
1622 (not whitespace-indent-tabs-mode
))
1626 (defun whitespace-indentation-regexp (&optional kind
)
1627 "Return the indentation regexp depending on `whitespace-indent-tabs-mode'."
1628 (whitespace-regexp whitespace-indentation-regexp kind
))
1631 (defun whitespace-space-after-tab-regexp (&optional kind
)
1632 "Return the space-after-tab regexp depending on `whitespace-indent-tabs-mode'."
1633 (whitespace-regexp whitespace-space-after-tab-regexp kind
))
1636 (defconst whitespace-report-list
1638 (cons 'empty whitespace-empty-at-bob-regexp
)
1639 (cons 'empty whitespace-empty-at-eob-regexp
)
1640 (cons 'trailing whitespace-trailing-regexp
)
1641 (cons 'indentation nil
)
1642 (cons 'indentation
::tab nil
)
1643 (cons 'indentation
::space nil
)
1644 (cons 'space-before-tab whitespace-space-before-tab-regexp
)
1645 (cons 'space-before-tab
::tab whitespace-space-before-tab-regexp
)
1646 (cons 'space-before-tab
::space whitespace-space-before-tab-regexp
)
1647 (cons 'space-after-tab nil
)
1648 (cons 'space-after-tab
::tab nil
)
1649 (cons 'space-after-tab
::space nil
)
1651 "List of whitespace bogus symbol and corresponding regexp.")
1654 (defconst whitespace-report-text
1655 '( ;; `indent-tabs-mode' has non-nil value
1659 Current Setting Whitespace Problem
1661 empty [] [] empty lines at beginning of buffer
1662 empty [] [] empty lines at end of buffer
1663 trailing [] [] SPACEs or TABs at end of line
1664 indentation [] [] 8 or more SPACEs at beginning of line
1665 indentation::tab [] [] 8 or more SPACEs at beginning of line
1666 indentation::space [] [] TABs at beginning of line
1667 space-before-tab [] [] SPACEs before TAB
1668 space-before-tab::tab [] [] SPACEs before TAB: SPACEs
1669 space-before-tab::space [] [] SPACEs before TAB: TABs
1670 space-after-tab [] [] 8 or more SPACEs after TAB
1671 space-after-tab::tab [] [] 8 or more SPACEs after TAB: SPACEs
1672 space-after-tab::space [] [] 8 or more SPACEs after TAB: TABs
1676 .
;; `indent-tabs-mode' has nil value
1680 Current Setting Whitespace Problem
1682 empty [] [] empty lines at beginning of buffer
1683 empty [] [] empty lines at end of buffer
1684 trailing [] [] SPACEs or TABs at end of line
1685 indentation [] [] TABs at beginning of line
1686 indentation::tab [] [] 8 or more SPACEs at beginning of line
1687 indentation::space [] [] TABs at beginning of line
1688 space-before-tab [] [] SPACEs before TAB
1689 space-before-tab::tab [] [] SPACEs before TAB: SPACEs
1690 space-before-tab::space [] [] SPACEs before TAB: TABs
1691 space-after-tab [] [] 8 or more SPACEs after TAB
1692 space-after-tab::tab [] [] 8 or more SPACEs after TAB: SPACEs
1693 space-after-tab::space [] [] 8 or more SPACEs after TAB: TABs
1697 "Text for whitespace bogus report.
1699 It is a cons of strings, where the car part is used when
1700 `indent-tabs-mode' is non-nil, and the cdr part is used when
1701 `indent-tabs-mode' is nil.")
1704 (defconst whitespace-report-buffer-name
"*Whitespace Report*"
1705 "The buffer name for whitespace bogus report.")
1709 (defun whitespace-report (&optional force report-if-bogus
)
1710 "Report some whitespace problems in buffer.
1712 Return nil if there is no whitespace problem; otherwise, return
1715 If FORCE is non-nil or \\[universal-argument] was pressed just
1716 before calling `whitespace-report' interactively, it forces
1717 `whitespace-style' to have:
1725 If REPORT-IF-BOGUS is non-nil, it reports only when there are any
1726 whitespace problems in buffer.
1728 Report if some of the following whitespace problems exist:
1730 * If `indent-tabs-mode' is non-nil:
1731 empty 1. empty lines at beginning of buffer.
1732 empty 2. empty lines at end of buffer.
1733 trailing 3. SPACEs or TABs at end of line.
1734 indentation 4. 8 or more SPACEs at beginning of line.
1735 space-before-tab 5. SPACEs before TAB.
1736 space-after-tab 6. 8 or more SPACEs after TAB.
1738 * If `indent-tabs-mode' is nil:
1739 empty 1. empty lines at beginning of buffer.
1740 empty 2. empty lines at end of buffer.
1741 trailing 3. SPACEs or TABs at end of line.
1742 indentation 4. TABS at beginning of line.
1743 space-before-tab 5. SPACEs before TAB.
1744 space-after-tab 6. 8 or more SPACEs after TAB.
1746 See `whitespace-style' for documentation.
1747 See also `whitespace-cleanup' and `whitespace-cleanup-region' for
1748 cleaning up these problems."
1749 (interactive (list current-prefix-arg
))
1750 (whitespace-report-region (point-min) (point-max)
1751 force report-if-bogus
))
1755 (defun whitespace-report-region (start end
&optional force report-if-bogus
)
1756 "Report some whitespace problems in a region.
1758 Return nil if there is no whitespace problem; otherwise, return
1761 If FORCE is non-nil or \\[universal-argument] was pressed just
1762 before calling `whitespace-report-region' interactively, it
1763 forces `whitespace-style' to have:
1771 If REPORT-IF-BOGUS is non-nil, it reports only when there are any
1772 whitespace problems in buffer.
1774 Report if some of the following whitespace problems exist:
1776 * If `indent-tabs-mode' is non-nil:
1777 empty 1. empty lines at beginning of buffer.
1778 empty 2. empty lines at end of buffer.
1779 trailing 3. SPACEs or TABs at end of line.
1780 indentation 4. 8 or more SPACEs at beginning of line.
1781 space-before-tab 5. SPACEs before TAB.
1782 space-after-tab 6. 8 or more SPACEs after TAB.
1784 * If `indent-tabs-mode' is nil:
1785 empty 1. empty lines at beginning of buffer.
1786 empty 2. empty lines at end of buffer.
1787 trailing 3. SPACEs or TABs at end of line.
1788 indentation 4. TABS at beginning of line.
1789 space-before-tab 5. SPACEs before TAB.
1790 space-after-tab 6. 8 or more SPACEs after TAB.
1792 See `whitespace-style' for documentation.
1793 See also `whitespace-cleanup' and `whitespace-cleanup-region' for
1794 cleaning up these problems."
1796 (setq force
(or current-prefix-arg force
))
1798 (save-match-data ;FIXME: Why?
1799 (let* ((has-bogus nil
)
1800 (rstart (min start end
))
1801 (rend (max start end
))
1806 (add-to-list 'whitespace-style
(car option
)))
1810 ((eq (car option
) 'indentation
)
1811 (whitespace-indentation-regexp))
1812 ((eq (car option
) 'indentation
::tab
)
1813 (whitespace-indentation-regexp 'tab
))
1814 ((eq (car option
) 'indentation
::space
)
1815 (whitespace-indentation-regexp 'space
))
1816 ((eq (car option
) 'space-after-tab
)
1817 (whitespace-space-after-tab-regexp))
1818 ((eq (car option
) 'space-after-tab
::tab
)
1819 (whitespace-space-after-tab-regexp 'tab
))
1820 ((eq (car option
) 'space-after-tab
::space
)
1821 (whitespace-space-after-tab-regexp 'space
))
1824 (and (re-search-forward regexp rend t
)
1825 (setq has-bogus t
))))
1826 whitespace-report-list
)))
1827 (when (if report-if-bogus has-bogus t
)
1828 (whitespace-kill-buffer whitespace-report-buffer-name
)
1829 ;; `whitespace-indent-tabs-mode' is local to current buffer
1830 ;; `whitespace-tab-width' is local to current buffer
1831 (let ((ws-indent-tabs-mode whitespace-indent-tabs-mode
)
1832 (ws-tab-width whitespace-tab-width
))
1833 (with-current-buffer (get-buffer-create
1834 whitespace-report-buffer-name
)
1836 (insert (if ws-indent-tabs-mode
1837 (car whitespace-report-text
)
1838 (cdr whitespace-report-text
)))
1839 (goto-char (point-min))
1841 (dolist (option whitespace-report-list
)
1844 27 (memq (car option
) whitespace-style
))
1845 (whitespace-mark-x 7 (car bogus-list
))
1846 (setq bogus-list
(cdr bogus-list
)))
1848 (whitespace-insert-value ws-indent-tabs-mode
)
1849 (whitespace-insert-value ws-tab-width
)
1851 (goto-char (point-max))
1852 (insert " Type `M-x whitespace-cleanup'"
1853 " to cleanup the buffer.\n\n"
1854 " Type `M-x whitespace-cleanup-region'"
1855 " to cleanup a region.\n\n"))
1856 (whitespace-display-window (current-buffer)))))
1860 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1861 ;;;; Internal functions
1864 (defvar whitespace-font-lock-keywords nil
1865 "Used to save the value `whitespace-color-on' adds to `font-lock-keywords'.")
1868 (defconst whitespace-help-text
1870 Whitespace Toggle Options | scroll up : SPC or > |
1871 | scroll down: M-SPC or < |
1872 FACES \\__________________________/
1873 [] f - toggle face visualization
1874 [] t - toggle TAB visualization
1875 [] s - toggle SPACE and HARD SPACE visualization
1876 [] r - toggle trailing blanks visualization
1877 [] l - toggle \"long lines\" visualization
1878 [] L - toggle \"long lines\" tail visualization
1879 [] n - toggle NEWLINE visualization
1880 [] e - toggle empty line at bob and/or eob visualization
1881 [] C-i - toggle indentation SPACEs visualization (via `indent-tabs-mode')
1882 [] I - toggle indentation SPACEs visualization
1883 [] i - toggle indentation TABs visualization
1884 [] C-a - toggle SPACEs after TAB visualization (via `indent-tabs-mode')
1885 [] A - toggle SPACEs after TAB: SPACEs visualization
1886 [] a - toggle SPACEs after TAB: TABs visualization
1887 [] C-b - toggle SPACEs before TAB visualization (via `indent-tabs-mode')
1888 [] B - toggle SPACEs before TAB: SPACEs visualization
1889 [] b - toggle SPACEs before TAB: TABs visualization
1892 [] T - toggle TAB visualization
1893 [] S - toggle SPACE and HARD SPACE visualization
1894 [] N - toggle NEWLINE visualization
1896 x - restore `whitespace-style' value
1898 ? - display this text\n\n"
1899 "Text for whitespace toggle options.")
1902 (defconst whitespace-help-buffer-name
"*Whitespace Toggle Options*"
1903 "The buffer name for whitespace toggle options.")
1906 (defun whitespace-insert-value (value)
1907 "Insert VALUE at column 20 of next line."
1909 (move-to-column 20 t
)
1910 (insert (format "%s" value
)))
1913 (defun whitespace-mark-x (nchars condition
)
1914 "Insert the mark ('X' or ' ') after NCHARS depending on CONDITION."
1915 (forward-char nchars
)
1916 (insert (if condition
"X" " ")))
1919 (defun whitespace-insert-option-mark (the-list the-value
)
1920 "Insert the option mark ('X' or ' ') in toggle options buffer."
1921 (goto-char (point-min))
1923 (dolist (sym the-list
)
1924 (if (eq sym
'help-newline
)
1927 (whitespace-mark-x 2 (memq sym the-value
)))))
1930 (defun whitespace-help-on (style)
1931 "Display the whitespace toggle options."
1932 (unless (get-buffer whitespace-help-buffer-name
)
1933 (delete-other-windows)
1934 (let ((buffer (get-buffer-create whitespace-help-buffer-name
)))
1935 (with-current-buffer buffer
1937 (insert whitespace-help-text
)
1938 (whitespace-insert-option-mark
1939 whitespace-style-value-list style
)
1940 (whitespace-display-window buffer
)))))
1943 (defun whitespace-display-window (buffer)
1944 "Display BUFFER in a new window."
1945 (goto-char (point-min))
1946 (set-buffer-modified-p nil
)
1947 (when (< (window-height) (* 2 window-min-height
))
1948 (kill-buffer buffer
)
1949 (error "Window height is too small; \
1950 can't split window to display whitespace toggle options"))
1951 (let ((win (split-window)))
1952 (set-window-buffer win buffer
)
1953 (shrink-window-if-larger-than-buffer win
)))
1956 (defun whitespace-kill-buffer (buffer-name)
1957 "Kill buffer BUFFER-NAME and windows related with it."
1958 (let ((buffer (get-buffer buffer-name
)))
1960 (delete-windows-on buffer
)
1961 (kill-buffer buffer
))))
1964 (defun whitespace-help-off ()
1965 "Remove the buffer and window of the whitespace toggle options."
1966 (whitespace-kill-buffer whitespace-help-buffer-name
))
1969 (defun whitespace-help-scroll (&optional up
)
1970 "Scroll help window, if it exists.
1972 If UP is non-nil, scroll up; otherwise, scroll down."
1974 (let ((buffer (get-buffer whitespace-help-buffer-name
)))
1976 (with-selected-window (get-buffer-window buffer
)
1983 ;; just ignore error
1987 (defun whitespace-interactive-char (local-p)
1988 "Interactive function to read a char and return a symbol.
1990 If LOCAL-P is non-nil, it uses a local context; otherwise, it
1991 uses a global context.
1993 It accepts one of the following chars:
1997 f toggle face visualization
1998 t toggle TAB visualization
1999 s toggle SPACE and HARD SPACE visualization
2000 r toggle trailing blanks visualization
2001 l toggle \"long lines\" visualization
2002 L toggle \"long lines\" tail visualization
2003 n toggle NEWLINE visualization
2004 e toggle empty line at bob and/or eob visualization
2005 C-i toggle indentation SPACEs visualization (via `indent-tabs-mode')
2006 I toggle indentation SPACEs visualization
2007 i toggle indentation TABs visualization
2008 C-a toggle SPACEs after TAB visualization (via `indent-tabs-mode')
2009 A toggle SPACEs after TAB: SPACEs visualization
2010 a toggle SPACEs after TAB: TABs visualization
2011 C-b toggle SPACEs before TAB visualization (via `indent-tabs-mode')
2012 B toggle SPACEs before TAB: SPACEs visualization
2013 b toggle SPACEs before TAB: TABs visualization
2016 T toggle TAB visualization
2017 S toggle SPACE and HARD SPACE visualization
2018 N toggle NEWLINE visualization
2020 x restore `whitespace-style' value
2021 ? display brief help
2023 See also `whitespace-toggle-option-alist'."
2024 (let* ((is-off (not (if local-p
2026 global-whitespace-mode
)))
2027 (style (cond (is-off whitespace-style
) ; use default value
2028 (local-p whitespace-active-style
)
2029 (t whitespace-toggle-style
)))
2031 (format "Whitespace Toggle %s (type ? for further options)-"
2032 (if local-p
"Local" "Global")))
2034 ;; read a valid option and get the corresponding symbol
2035 (save-window-excursion
2036 (condition-case data
2041 (setq ch
(read-char prompt
))
2045 (assq ch whitespace-toggle-option-alist
)))))
2048 ((eq ch ?
\?) (whitespace-help-on style
))
2049 ((eq ch ?\
) (whitespace-help-scroll t
))
2050 ((eq ch ?\M-
) (whitespace-help-scroll))
2051 ((eq ch ?
>) (whitespace-help-scroll t
))
2052 ((eq ch ?
<) (whitespace-help-scroll))
2054 (whitespace-help-off)
2055 (message " ")) ; clean echo area
2058 (whitespace-help-off)
2059 (error (error-message-string data
)))))
2060 (list sym
))) ; return the appropriate symbol
2063 (defun whitespace-toggle-list (local-p arg the-list
)
2064 "Toggle options in THE-LIST based on list ARG.
2066 If LOCAL-P is non-nil, it uses a local context; otherwise, it
2067 uses a global context.
2069 ARG is a list of options to be toggled.
2071 THE-LIST is a list of options. This list will be toggled and the
2072 resultant list will be returned."
2073 (unless (if local-p whitespace-mode global-whitespace-mode
)
2074 (setq the-list whitespace-style
))
2075 (setq the-list
(copy-sequence the-list
)) ; keep original list
2076 (dolist (sym (if (listp arg
) arg
(list arg
)))
2078 ;; ignore help value
2079 ((eq sym
'help-newline
))
2080 ;; restore default values
2081 ((eq sym
'whitespace-style
)
2082 (setq the-list whitespace-style
))
2083 ;; toggle valid values
2084 ((memq sym whitespace-style-value-list
)
2085 (setq the-list
(if (memq sym the-list
)
2087 (cons sym the-list
))))))
2091 (defvar whitespace-display-table nil
2092 "Used to save a local display table.")
2094 (defvar whitespace-display-table-was-local nil
2095 "Used to remember whether a buffer initially had a local display table.")
2098 (defun whitespace-turn-on ()
2099 "Turn on whitespace visualization."
2100 ;; prepare local hooks
2101 (add-hook 'write-file-functions
'whitespace-write-file-hook nil t
)
2102 ;; create whitespace local buffer environment
2103 (set (make-local-variable 'whitespace-font-lock-keywords
) nil
)
2104 (set (make-local-variable 'whitespace-display-table
) nil
)
2105 (set (make-local-variable 'whitespace-display-table-was-local
) nil
)
2106 (set (make-local-variable 'whitespace-active-style
)
2107 (if (listp whitespace-style
)
2109 (list whitespace-style
)))
2110 (set (make-local-variable 'whitespace-indent-tabs-mode
)
2112 (set (make-local-variable 'whitespace-tab-width
)
2114 ;; turn on whitespace
2115 (when whitespace-active-style
2116 (whitespace-color-on)
2117 (whitespace-display-char-on)))
2120 (defun whitespace-turn-off ()
2121 "Turn off whitespace visualization."
2122 (remove-hook 'write-file-functions
'whitespace-write-file-hook t
)
2123 (when whitespace-active-style
2124 (whitespace-color-off)
2125 (whitespace-display-char-off)))
2128 (defun whitespace-style-face-p ()
2129 "Return t if there is some visualization via face."
2130 (and (memq 'face whitespace-active-style
)
2131 (or (memq 'tabs whitespace-active-style
)
2132 (memq 'spaces whitespace-active-style
)
2133 (memq 'trailing whitespace-active-style
)
2134 (memq 'lines whitespace-active-style
)
2135 (memq 'lines-tail whitespace-active-style
)
2136 (memq 'newline whitespace-active-style
)
2137 (memq 'empty whitespace-active-style
)
2138 (memq 'indentation whitespace-active-style
)
2139 (memq 'indentation
::tab whitespace-active-style
)
2140 (memq 'indentation
::space whitespace-active-style
)
2141 (memq 'space-after-tab whitespace-active-style
)
2142 (memq 'space-after-tab
::tab whitespace-active-style
)
2143 (memq 'space-after-tab
::space whitespace-active-style
)
2144 (memq 'space-before-tab whitespace-active-style
)
2145 (memq 'space-before-tab
::tab whitespace-active-style
)
2146 (memq 'space-before-tab
::space whitespace-active-style
))))
2149 (defun whitespace-color-on ()
2150 "Turn on color visualization."
2151 (when (whitespace-style-face-p)
2152 ;; save current point and refontify when necessary
2153 (set (make-local-variable 'whitespace-point
)
2155 (set (make-local-variable 'whitespace-font-lock-refontify
)
2157 (set (make-local-variable 'whitespace-bob-marker
)
2159 (set (make-local-variable 'whitespace-eob-marker
)
2161 (set (make-local-variable 'whitespace-buffer-changed
)
2163 (add-hook 'post-command-hook
#'whitespace-post-command-hook nil t
)
2164 (add-hook 'before-change-functions
#'whitespace-buffer-changed nil t
)
2165 ;; Add whitespace-mode color into font lock.
2167 whitespace-font-lock-keywords
2169 ,@(when (memq 'spaces whitespace-active-style
)
2171 `((,whitespace-space-regexp
1 whitespace-space t
)
2172 ;; Show HARD SPACEs.
2173 (,whitespace-hspace-regexp
1 whitespace-hspace t
)))
2174 ,@(when (memq 'tabs whitespace-active-style
)
2176 `((,whitespace-tab-regexp
1 whitespace-tab t
)))
2177 ,@(when (memq 'trailing whitespace-active-style
)
2178 ;; Show trailing blanks.
2179 `((,#'whitespace-trailing-regexp
1 whitespace-trailing t
)))
2180 ,@(when (or (memq 'lines whitespace-active-style
)
2181 (memq 'lines-tail whitespace-active-style
))
2182 ;; Show "long" lines.
2183 `((,(let ((line-column (or whitespace-line-column fill-column
)))
2185 "^\\([^\t\n]\\{%s\\}\\|[^\t\n]\\{0,%s\\}\t\\)\\{%d\\}%s\\(.+\\)$"
2186 whitespace-tab-width
2187 (1- whitespace-tab-width
)
2188 (/ line-column whitespace-tab-width
)
2189 (let ((rem (% line-column whitespace-tab-width
)))
2192 (format ".\\{%d\\}" rem
)))))
2193 ,(if (memq 'lines whitespace-active-style
)
2196 whitespace-line prepend
)))
2197 ,@(when (or (memq 'space-before-tab whitespace-active-style
)
2198 (memq 'space-before-tab
::tab whitespace-active-style
)
2199 (memq 'space-before-tab
::space whitespace-active-style
))
2200 `((,whitespace-space-before-tab-regexp
2202 ((memq 'space-before-tab whitespace-active-style
)
2203 ;; Show SPACEs before TAB (indent-tabs-mode).
2204 (if whitespace-indent-tabs-mode
1 2))
2205 ((memq 'space-before-tab
::tab whitespace-active-style
)
2207 ((memq 'space-before-tab
::space whitespace-active-style
)
2209 whitespace-space-before-tab t
)))
2210 ,@(when (or (memq 'indentation whitespace-active-style
)
2211 (memq 'indentation
::tab whitespace-active-style
)
2212 (memq 'indentation
::space whitespace-active-style
))
2214 ((memq 'indentation whitespace-active-style
)
2215 ;; Show indentation SPACEs (indent-tabs-mode).
2216 (whitespace-indentation-regexp))
2217 ((memq 'indentation
::tab whitespace-active-style
)
2218 ;; Show indentation SPACEs (SPACEs).
2219 (whitespace-indentation-regexp 'tab
))
2220 ((memq 'indentation
::space whitespace-active-style
)
2221 ;; Show indentation SPACEs (TABs).
2222 (whitespace-indentation-regexp 'space
)))
2223 1 whitespace-indentation t
)))
2224 ,@(when (memq 'empty whitespace-active-style
)
2225 ;; Show empty lines at beginning of buffer.
2226 `((,#'whitespace-empty-at-bob-regexp
2227 1 whitespace-empty t
)
2228 ;; Show empty lines at end of buffer.
2229 (,#'whitespace-empty-at-eob-regexp
2230 1 whitespace-empty t
)))
2231 ,@(when (or (memq 'space-after-tab whitespace-active-style
)
2232 (memq 'space-after-tab
::tab whitespace-active-style
)
2233 (memq 'space-after-tab
::space whitespace-active-style
))
2235 ((memq 'space-after-tab whitespace-active-style
)
2236 ;; Show SPACEs after TAB (indent-tabs-mode).
2237 (whitespace-space-after-tab-regexp))
2238 ((memq 'space-after-tab
::tab whitespace-active-style
)
2239 ;; Show SPACEs after TAB (SPACEs).
2240 (whitespace-space-after-tab-regexp 'tab
))
2241 ((memq 'space-after-tab
::space whitespace-active-style
)
2242 ;; Show SPACEs after TAB (TABs).
2243 (whitespace-space-after-tab-regexp 'space
)))
2244 1 whitespace-space-after-tab t
)))))
2245 (font-lock-add-keywords nil whitespace-font-lock-keywords t
)
2246 (font-lock-fontify-buffer)))
2249 (defun whitespace-color-off ()
2250 "Turn off color visualization."
2251 ;; turn off font lock
2252 (when (whitespace-style-face-p)
2253 (remove-hook 'post-command-hook
#'whitespace-post-command-hook t
)
2254 (remove-hook 'before-change-functions
#'whitespace-buffer-changed t
)
2255 (font-lock-remove-keywords nil whitespace-font-lock-keywords
)
2256 (font-lock-fontify-buffer)))
2259 (defun whitespace-trailing-regexp (limit)
2260 "Match trailing spaces which do not contain the point at end of line."
2262 (while (if (re-search-forward whitespace-trailing-regexp limit t
)
2263 (= whitespace-point
(match-end 1)) ;; loop if point at eol
2264 (setq status nil
))) ;; end of buffer
2268 (defun whitespace-empty-at-bob-regexp (limit)
2269 "Match spaces at beginning of buffer which do not contain the point at \
2270 beginning of buffer."
2276 (setq r
(and (/= whitespace-point
1)
2277 (looking-at whitespace-empty-at-bob-regexp
)))
2278 (set-marker whitespace-bob-marker
(if r
(match-end 1) b
)))
2279 ;; inside bob empty region
2280 ((<= limit whitespace-bob-marker
)
2281 (setq r
(looking-at whitespace-empty-at-bob-regexp
))
2283 (when (< (match-end 1) limit
)
2284 (set-marker whitespace-bob-marker
(match-end 1)))
2285 (set-marker whitespace-bob-marker b
)))
2286 ;; intersection with end of bob empty region
2287 ((<= b whitespace-bob-marker
)
2288 (setq r
(looking-at whitespace-empty-at-bob-regexp
))
2289 (set-marker whitespace-bob-marker
(if r
(match-end 1) b
)))
2290 ;; it is not inside bob empty region
2293 ;; move to end of matching
2294 (and r
(goto-char (match-end 1)))
2298 (defsubst whitespace-looking-back
(regexp limit
)
2300 (when (/= 0 (skip-chars-backward " \t\n" limit
))
2303 (looking-at regexp
))))
2306 (defun whitespace-empty-at-eob-regexp (limit)
2307 "Match spaces at end of buffer which do not contain the point at end of \
2310 (e (1+ (buffer-size)))
2315 (when (/= whitespace-point e
)
2317 (setq r
(whitespace-looking-back whitespace-empty-at-eob-regexp b
)))
2319 (set-marker whitespace-eob-marker
(match-beginning 1))
2320 (set-marker whitespace-eob-marker limit
)
2321 (goto-char b
))) ; return back to initial position
2322 ;; inside eob empty region
2323 ((>= b whitespace-eob-marker
)
2325 (setq r
(whitespace-looking-back whitespace-empty-at-eob-regexp b
))
2327 (when (> (match-beginning 1) b
)
2328 (set-marker whitespace-eob-marker
(match-beginning 1)))
2329 (set-marker whitespace-eob-marker limit
)
2330 (goto-char b
))) ; return back to initial position
2331 ;; intersection with beginning of eob empty region
2332 ((>= limit whitespace-eob-marker
)
2334 (setq r
(whitespace-looking-back whitespace-empty-at-eob-regexp b
))
2336 (set-marker whitespace-eob-marker
(match-beginning 1))
2337 (set-marker whitespace-eob-marker limit
)
2338 (goto-char b
))) ; return back to initial position
2339 ;; it is not inside eob empty region
2345 (defun whitespace-buffer-changed (_beg _end
)
2346 "Set `whitespace-buffer-changed' variable to t."
2347 (setq whitespace-buffer-changed t
))
2350 (defun whitespace-post-command-hook ()
2351 "Save current point into `whitespace-point' variable.
2352 Also refontify when necessary."
2353 (setq whitespace-point
(point)) ; current point position
2356 ;; it is at end of line ...
2358 ;; ... with trailing SPACE or TAB
2359 (or (= (preceding-char) ?\
)
2360 (= (preceding-char) ?
\t)))
2361 ;; it is at beginning of buffer (bob)
2362 (= whitespace-point
1)
2363 ;; the buffer was modified and ...
2364 (and whitespace-buffer-changed
2366 ;; ... or inside bob whitespace region
2367 (<= whitespace-point whitespace-bob-marker
)
2368 ;; ... or at bob whitespace region border
2369 (and (= whitespace-point
(1+ whitespace-bob-marker
))
2370 (= (preceding-char) ?
\n))))
2371 ;; it is at end of buffer (eob)
2372 (= whitespace-point
(1+ (buffer-size)))
2373 ;; the buffer was modified and ...
2374 (and whitespace-buffer-changed
2376 ;; ... or inside eob whitespace region
2377 (>= whitespace-point whitespace-eob-marker
)
2378 ;; ... or at eob whitespace region border
2379 (and (= whitespace-point
(1- whitespace-eob-marker
))
2380 (= (following-char) ?
\n)))))))
2381 (when (or refontify
(> whitespace-font-lock-refontify
0))
2382 (setq whitespace-buffer-changed nil
)
2383 ;; adjust refontify counter
2384 (setq whitespace-font-lock-refontify
2387 (1- whitespace-font-lock-refontify
)))
2389 (jit-lock-refontify))))
2392 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2393 ;;;; Hacked from visws.el (Miles Bader <miles@gnu.org>)
2396 (defun whitespace-style-mark-p ()
2397 "Return t if there is some visualization via display table."
2398 (or (memq 'tab-mark whitespace-active-style
)
2399 (memq 'space-mark whitespace-active-style
)
2400 (memq 'newline-mark whitespace-active-style
)))
2403 (defsubst whitespace-char-valid-p
(char)
2404 ;; This check should be improved!!!
2409 (defun whitespace-display-vector-p (vec)
2410 "Return true if every character in vector VEC can be displayed."
2411 (let ((i (length vec
)))
2413 (while (and (>= (setq i
(1- i
)) 0)
2414 (whitespace-char-valid-p (aref vec i
))))
2418 (defun whitespace-display-char-on ()
2419 "Turn on character display mapping."
2420 (when (and whitespace-display-mappings
2421 (whitespace-style-mark-p))
2423 ;; Remember whether a buffer has a local display table.
2424 (unless whitespace-display-table-was-local
2425 (setq whitespace-display-table-was-local t
2426 whitespace-display-table
2427 (copy-sequence buffer-display-table
))
2428 ;; Assure `buffer-display-table' is unique
2429 ;; when two or more windows are visible.
2430 (setq buffer-display-table
2431 (copy-sequence buffer-display-table
)))
2432 (unless buffer-display-table
2433 (setq buffer-display-table
(make-display-table)))
2434 (dolist (entry whitespace-display-mappings
)
2435 ;; check if it is to display this mark
2436 (when (memq (car entry
) whitespace-style
)
2437 ;; Get a displayable mapping.
2438 (setq vecs
(cddr entry
))
2440 (not (whitespace-display-vector-p (car vecs
))))
2441 (setq vecs
(cdr vecs
)))
2442 ;; Display a valid mapping.
2444 (setq vec
(copy-sequence (car vecs
)))
2446 (when (and (eq (cadr entry
) ?
\n)
2447 (memq 'newline whitespace-active-style
))
2448 ;; Only insert face bits on NEWLINE char mapping to avoid
2449 ;; obstruction of other faces like TABs and (HARD) SPACEs
2450 ;; faces, font-lock faces, etc.
2451 (dotimes (i (length vec
))
2452 (or (eq (aref vec i
) ?
\n)
2454 (make-glyph-code (aref vec i
)
2455 whitespace-newline
)))))
2457 (aset buffer-display-table
(cadr entry
) vec
)))))))
2460 (defun whitespace-display-char-off ()
2461 "Turn off character display mapping."
2462 (and whitespace-display-mappings
2463 (whitespace-style-mark-p)
2464 whitespace-display-table-was-local
2465 (setq whitespace-display-table-was-local nil
2466 buffer-display-table whitespace-display-table
)))
2469 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2473 (defun whitespace-action-when-on ()
2474 "Action to be taken always when local whitespace is turned on."
2475 (cond ((memq 'cleanup whitespace-action
)
2476 (whitespace-cleanup))
2477 ((memq 'report-on-bogus whitespace-action
)
2478 (whitespace-report nil t
))))
2481 (defun whitespace-write-file-hook ()
2482 "Action to be taken when buffer is written.
2483 It should be added buffer-locally to `write-file-functions'."
2484 (cond ((memq 'auto-cleanup whitespace-action
)
2485 (whitespace-cleanup))
2486 ((memq 'abort-on-bogus whitespace-action
)
2487 (when (whitespace-report nil t
)
2488 (error "Abort write due to whitespace problems in %s"
2490 nil
) ; continue hook processing
2493 (defun whitespace-warn-read-only (msg)
2494 "Warn if buffer is read-only."
2495 (when (memq 'warn-if-read-only whitespace-action
)
2496 (message "Can't %s: %s is read-only" msg
(buffer-name))))
2499 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2502 (defun whitespace-unload-function ()
2503 "Unload the whitespace library."
2504 (global-whitespace-mode -
1)
2505 ;; be sure all local whitespace mode is turned off
2506 (save-current-buffer
2507 (dolist (buf (buffer-list))
2509 (whitespace-mode -
1)))
2510 nil
) ; continue standard unloading
2513 (provide 'whitespace
)
2516 (run-hooks 'whitespace-load-hook
)
2519 ;;; whitespace.el ends here