Emacs: Turn on indent-tab-mods for tex-mode

master
Pierre Neidhardt 2014-10-30 18:17:49 +01:00
parent e5bd09dc2a
commit 9053985f71
1 changed files with 4 additions and 0 deletions

View File

@ -119,6 +119,10 @@ This does not interfere with `subword-mode'."
(add-hook-and-eval
'tex-mode-hook
(lambda ()
;; `tex-mode' sets `indent-tabs-mode' to nil, invoking the following
;; argument: "TABs in verbatim environments don't do what you think." Not
;; sure how relevant this bad comment is. We revert it.
(setq indent-tabs-mode t)
(dolist (key '("\C-c\C-f" "\C-c\C-b"))
(local-unset-key key))
(set-face-attribute 'tex-verbatim nil :family "freemono")