haskell-mode icon indicating copy to clipboard operation
haskell-mode copied to clipboard

Emacs mode for Haskell

Results 120 haskell-mode issues
Sort by recently updated
recently updated
newest added

## What I expect ``` showDisplayItem :: DisplayItem -> IO String showDisplayItem (Item dt (MixerControl m c mi) l) = flip catch (const warn) $ AM.withMixer m $ \m' ->...

Currently when region is active and TAB or S-TAB is pressed in `haskell-indentation-mode` the region is move one space left or right. To do: - [ ] make it move...

well-defined-task

I like to work in multiline mode with auto-complete, and have noticed the following bug: when I press TAB to complete a word, the entire Emacs session hangs. I have...

repl (interactive)

I followed the install instructions precisely but got this: Install package: haskell-mode [No match] I'm running GNU Emacs 26.2 on macos 10.14.4

After checking out newest git 56d67ee282294c786a92e2d83c5bebf1a6d919c1 of haskell-mode, I do ``` $ make $ wget https://raw.githubusercontent.com/wrengr/bytestring-trie/e149ccfb1124feb11aba04f3e2b1e5a557220e4c/src/Data/Trie/ArrayMapped/SparseArray.hs $ emacs -Q -L . --eval "(progn (require 'haskell-mode) (find-file \"SparseArray.hs\") (eldoc-mode -1) (goto-line...

``` module Foo where foo :: Int -> IO () foo x = case x of x | let y = x + 1, y > 5 -> do putStrLn...

Possibly related is [this issue](https://github.com/haskell/haskell-mode/issues/137). Here's some [code that illustrates the problem](https://github.com/JeffreyBenjaminBrown/vivid/blob/64454068d98adc1a4014d0c0752fd6eeb52ab491/src/Dispatch/Join.hs). In the last function, `meta''`, there's a commented-out type signature for the subfunction called `ffxs`. (The comment says...

**How to replicate:** Make a directory with two files, `A.hs` and `B.hs`, like so: ``` -- In A.hs: module A where {} -- In B.hs: import A x = unbound...

Obviously it allows the insertion of a custom hoogle command. I now have this server running in a nix-shell per project: ```emacs-lisp (use-package haskell-mode :config (custom-set-variables ... '(haskell-hoogle-command (concat (projectile-project-root)...

HI, appreciate you guys notice this issue, My working environment is: WIndows 10 64 bit, emacs 24.5.1 My problem is that when I start interactive mode in eamcs, it would...

windows