Variable: whitespace-toggle-option-alist
whitespace-toggle-option-alist is a variable defined in
whitespace.el.gz.
Value
((102 . face)
(116 . tabs)
(115 . spaces)
(114 . trailing)
(108 . lines)
(76 . lines-tail)
(110 . newline)
(101 . empty)
(9 . indentation)
(73 . indentation::tab)
(105 . indentation::space)
(20 . big-indent)
(1 . space-after-tab)
(65 . space-after-tab::tab)
(97 . space-after-tab::space)
(2 . space-before-tab)
(66 . space-before-tab::tab)
(98 . space-before-tab::space)
(84 . tab-mark)
(83 . space-mark)
(78 . newline-mark)
(120 . whitespace-style))
Documentation
Alist of toggle options.
Each element has the form:
(CHAR . SYMBOL)
Where:
CHAR is a char which the user will have to type.
SYMBOL is a valid symbol associated with CHAR.
See whitespace-style-value-list.
Source Code
;; Defined in /usr/src/emacs/lisp/whitespace.el.gz
(defconst whitespace-toggle-option-alist
'((?f . face)
(?t . tabs)
(?s . spaces)
(?r . trailing)
(?l . lines)
(?L . lines-tail)
(?n . newline)
(?e . empty)
(?\C-i . indentation)
(?I . indentation::tab)
(?i . indentation::space)
(?\C-t . big-indent)
(?\C-a . space-after-tab)
(?A . space-after-tab::tab)
(?a . space-after-tab::space)
(?\C-b . space-before-tab)
(?B . space-before-tab::tab)
(?b . space-before-tab::space)
(?T . tab-mark)
(?S . space-mark)
(?N . newline-mark)
(?x . whitespace-style)
)
"Alist of toggle options.
Each element has the form:
(CHAR . SYMBOL)
Where:
CHAR is a char which the user will have to type.
SYMBOL is a valid symbol associated with CHAR.
See `whitespace-style-value-list'.")