haskell / haskell/haskell-mode
Function-name completion in haskell-indentation-mode
Open
indentation
- Dominant language
- Emacs Lisp
- Stars
- 1.4k
- Forks
- 354
- Avg merge
- 5d 10h
- Merged PRs (30d)
- 2
Description
In `haskell-indent`, it also completes the function name.
Suppose following situation:
``` haskell
fib :: Int -> Int
fib 0 = 1
-- ^ cursor here
```
When I hit `C-j` and `TAB` twice, `haskell-indent` completes the function name:
``` haskell
fib :: Int -> Int
fib 0 = 1
fib
```
But with `haskell-indentation`, function name is not completed.
Contributor guide
Assessment
This issue has not been assessed yet.