We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a814671 commit 885332fCopy full SHA for 885332f
haskell.el
@@ -28,6 +28,7 @@
28
(require 'haskell-sandbox)
29
(require 'haskell-modules)
30
(require 'haskell-string)
31
+(require 'haskell-completions)
32
33
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
34
;; Basic configuration hooks
@@ -54,7 +55,10 @@
54
55
"Minor mode for enabling haskell-process interaction."
56
:lighter " Interactive"
57
:keymap interactive-haskell-mode-map
- (add-hook 'completion-at-point-functions 'haskell-process-completions-at-point nil t))
58
+ (add-hook 'completion-at-point-functions
59
+ #'haskell-completions-sync-completions-at-point
60
+ nil
61
+ t))
62
63
(defun haskell-process-completions-at-point ()
64
"A completion-at-point function using the current haskell process."
0 commit comments