summarylogtreecommitdiffstats
path: root/emacs-whitespace-mode.install
blob: 64b0e556d1a3f34fcf8d2848192f37ef0e966def (plain)
1
2
3
4
5
6
7
8
post_install() {
    cat <<EOF
==> Put this in your ~/.emacs file to use whitespace-mode:

(autoload 'whitespace-mode "whitespace-mode.el" "Whitespace editing mode." t)
(setq auto-mode-alist (cons '("\.ws$" . whitespace-mode) auto-mode-alist))
EOF
}