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 10a4952 commit 92bd153Copy full SHA for 92bd153
haskell.el
@@ -74,7 +74,8 @@
74
(end (match-end 1)))
75
(list start end
76
(haskell-process-get-repl-completions process text))))
77
- ;; Complete OPTIONS using :complete repl ":set ..."
+ ;; Complete OPTIONS, a completion list comes from variable
78
+ ;; `haskell-ghc-supported-options'
79
((and (nth 4 (syntax-ppss))
80
(save-excursion
81
(let ((p (point)))
@@ -84,7 +85,8 @@
84
85
(rx symbol-start "-" (* (char alnum ?-)))
86
(line-beginning-position)))
87
(list (match-beginning 0) (match-end 0) haskell-ghc-supported-options))
- ;; Complete LANGUAGE :complete repl ":set -X..."
88
+ ;; Complete LANGUAGE, a list of completions comes from variable
89
90
91
92
0 commit comments