Mercurial > dotfiles
changeset 294:a8caf664abdc
go emacs: fix bug in enabling tabs for go files
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Mon, 12 Nov 2012 16:27:49 -0600 |
parents | 4e25b698e3e3 |
children | 026344f083ef |
files | .elisp/settings/80.go.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/.elisp/settings/80.go.el +++ b/.elisp/settings/80.go.el @@ -2,7 +2,7 @@ (defun af-go-hook () ;; enable tabs (setq tab-width 2) - (setq-default indent-tabs-mode t) + (setq indent-tabs-mode t) (make-variable-buffer-local 'whitespace-style) (setq whitespace-style '(trailing lines-tail indentation trailing empty)) )