File tree 1 file changed +9
-2
lines changed 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 28
28
(require 'haskell-sandbox )
29
29
(require 'haskell-modules )
30
30
(require 'haskell-string )
31
+ (require 'haskell-completions )
31
32
32
33
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
33
34
; ; Basic configuration hooks
54
55
" Minor mode for enabling haskell-process interaction."
55
56
:lighter " Interactive"
56
57
:keymap interactive-haskell-mode-map
57
- (add-hook 'completion-at-point-functions 'haskell-process-completions-at-point nil t ))
58
-
58
+ (add-hook 'completion-at-point-functions
59
+ #'haskell-completions-sync-completions-at-point
60
+ nil
61
+ t ))
62
+
63
+ (make-obsolete #'haskell-process-completions-at-point
64
+ #'haskell-completions-sync-completions-at-point
65
+ " June 19, 2015" )
59
66
(defun haskell-process-completions-at-point ()
60
67
" A completion-at-point function using the current haskell process."
61
68
(when (haskell-session-maybe )
You can’t perform that action at this time.
0 commit comments