Difference between revisions of "Whitespace-mode"
Jump to navigation
Jump to search
(package info) |
|||
| Line 1: | Line 1: | ||
| + | {{Package | ||
| + | |name=whitespace | ||
| + | |description=visualizes white spaces in the buffer | ||
| + | |source=http://git.savannah.gnu.org/cgit/emacs.git/tree/lisp/whitespace.el | ||
| + | |maintainer=[[FSF]] | ||
| + | |in_emacs=yes | ||
| + | |Development status=active | ||
| + | }} | ||
| + | |||
whitespace-mode is a [[minor mode]] to visualize blanks (tabs, spaces, newline, etc). | whitespace-mode is a [[minor mode]] to visualize blanks (tabs, spaces, newline, etc). | ||
| Line 4: | Line 13: | ||
Whitespace-mode is already bundled with Emacs.<br/> | Whitespace-mode is already bundled with Emacs.<br/> | ||
| − | Use {{Command|whitespace-mode}} to activate it on the current [[buffer]]. | + | Use {{Command|whitespace-mode}} to activate it on the current |
| + | [[buffer]]. | ||
| + | |||
| + | or add the following in your [[.emacs]] | ||
| + | <source lang="lisp"> | ||
| + | (whitespace-mode 1) | ||
| + | </source> | ||
| + | |||
| + | [[Category:Minor modes]] [[Category:Native Package]] | ||
Revision as of 14:37, 31 March 2012
| Description | visualizes white spaces in the buffer |
|---|---|
| Author | name of author |
| Maintainer | FSF |
| Source | http://git.savannah.gnu.org/cgit/emacs.git/tree/lisp/whitespace.el |
| Part of Emacs | yes |
whitespace-mode is a minor mode to visualize blanks (tabs, spaces, newline, etc).
Basic setup
Whitespace-mode is already bundled with Emacs.
Use M-x whitespace-mode to activate it on the current
buffer.
or add the following in your .emacs
(whitespace-mode 1)