summaryrefslogtreecommitdiff
path: root/doc/coding_style.mdwn
diff options
context:
space:
mode:
authorspwhitton2015-12-03 03:11:50 +0000
committeradmin2015-12-03 03:11:50 +0000
commit52a339cbecd52c836153516a933c9c13b46fe00f (patch)
tree1f09a28427752ce7170e64f3b5602f9f85aab90f /doc/coding_style.mdwn
parent9e2115422c7d066b8ffb4ef0a4b02c7eb758db3e (diff)
suggest haskell-tab-indent-mode for Emacs users in coding style page
Diffstat (limited to 'doc/coding_style.mdwn')
-rw-r--r--doc/coding_style.mdwn2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/coding_style.mdwn b/doc/coding_style.mdwn
index 219b367c..86a8516e 100644
--- a/doc/coding_style.mdwn
+++ b/doc/coding_style.mdwn
@@ -107,3 +107,5 @@ Note for emacs users: You can put the following snippet into a file called
(fill-column . 80)))
;; Warn about spaces used for indentation:
(haskell-mode . ((eval . (highlight-regexp "^ *")))))
+
+Also consider [haskell-tab-indent-mode](https://spwhitton.name/tech/code/haskell-tab-indent.el). The standard indentation modes that come with haskell-mode do not work well with tabs for indentation. This mode works well for hacking on Propellor. (A pull request has been submitted to have it included in haskell-mode.)