Skip to content

Commit

Permalink
Remove haskell-simple-indent
Browse files Browse the repository at this point in the history
  • Loading branch information
gracjan committed Dec 17, 2015
1 parent 0fe7688 commit 883bfd9
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 480 deletions.
1 change: 0 additions & 1 deletion Makefile
Expand Up @@ -69,7 +69,6 @@ ELFILES = \
haskell-process.el \
haskell-repl.el \
haskell-session.el \
haskell-simple-indent.el \
haskell-sort-imports.el \
haskell-string.el \
haskell-unicode-input-method.el \
Expand Down
7 changes: 0 additions & 7 deletions doc/haskell-mode.texi
Expand Up @@ -350,12 +350,6 @@ trade-offs:

@ftable @code

@item haskell-simple-indent-mode

A very simple indentation scheme; In this scheme, @key{TAB} will now
move the cursor to the next indent point in the previous non-blank line.
An indent point is a non-whitespace character following whitespace.

@item haskell-indent-mode

Intelligent semi-automatic indentation for Haskell's layout rule. The
Expand Down Expand Up @@ -386,7 +380,6 @@ convenient user interface or by adding @emph{one} of the following three
lines to your @file{.emacs} file:

@lisp
(add-hook 'haskell-mode-hook 'haskell-simple-indent-mode)
(add-hook 'haskell-mode-hook 'haskell-indent-mode)
(add-hook 'haskell-mode-hook 'haskell-indentation-mode)
@end lisp
Expand Down
3 changes: 0 additions & 3 deletions haskell-mode.el
Expand Up @@ -600,9 +600,6 @@ Indentation modes:
`haskell-indent-mode', Guy Lapalme
Intelligent semi-automatic indentation.
`haskell-simple-indent-mode', Graeme E Moss and Heribert Schuetz
Simple indentation.
Interaction modes:
`interactive-haskell-mode'
Expand Down
273 changes: 0 additions & 273 deletions haskell-simple-indent.el

This file was deleted.

14 changes: 0 additions & 14 deletions tests/haskell-indentation-tests.el
Expand Up @@ -28,7 +28,6 @@
(require 'haskell-font-lock)
(require 'haskell-indentation)
(require 'haskell-indent)
(require 'haskell-simple-indent)

;;; Code:

Expand Down Expand Up @@ -132,19 +131,6 @@ macro quotes them for you."
(should-not haskell-indentation-mode)
(should haskell-indent-mode)))

(ert-deftest haskell-indentation-turns-off-haskell-simple-indent ()
(with-temp-buffer
(haskell-mode)
(haskell-simple-indent-mode)
(should haskell-simple-indent-mode)
(haskell-indentation-mode)
(should haskell-indentation-mode)
(should-not haskell-simple-indent-mode)

(haskell-simple-indent-mode)
(should-not haskell-indentation-mode)
(should haskell-simple-indent-mode)))

(hindent-test "1 Check if '{' on its own line gets properly indented""
function = Record
{ field = 123 }"
Expand Down

0 comments on commit 883bfd9

Please sign in to comment.