From 59aa9d313bce0cc0e7018975559f4231072e477f Mon Sep 17 00:00:00 2001 From: spwhitton Date: Sat, 5 Dec 2015 19:52:17 +0000 Subject: [PATCH] Copy hints for Emacs users from propellor coding style page --- doc/coding_style.mdwn | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/doc/coding_style.mdwn b/doc/coding_style.mdwn index 6968c99586..288f524467 100644 --- a/doc/coding_style.mdwn +++ b/doc/coding_style.mdwn @@ -98,3 +98,16 @@ If you feel that this coding style leads to excessive amounts of horizontal or vertical whitespace around your code, making it hard to fit enough of it on the screen, consider finding a better abstraction, so the code that does fit on the screen is easily understandable. ;) + +----- + +Note for emacs users: You can put the following snippet into a file called +`.dir-locals.el` at root of git-annex's source tree to use tabs for indentation: + + ((nil . ((indent-tabs-mode . t) + (tab-width . 8) + (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/). 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.