We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1f9e6b commit 900f1bdCopy full SHA for 900f1bd
haskell-completions.el
@@ -38,6 +38,31 @@
38
39
(require 'haskell-mode)
40
41
+(defvar haskell-completions-pragma-names
42
+ (list "DEPRECATED"
43
+ "INCLUDE"
44
+ "INCOHERENT"
45
+ "INLINABLE"
46
+ "INLINE"
47
+ "LANGUAGE"
48
+ "LINE"
49
+ "MINIMAL"
50
+ "NOINLINE"
51
+ "NOUNPACK"
52
+ "OPTIONS"
53
+ "OPTIONS_GHC"
54
+ "OVERLAPPABLE"
55
+ "OVERLAPPING"
56
+ "OVERLAPS"
57
+ "RULES"
58
+ "SOURCE"
59
+ "SPECIALIZE"
60
+ "UNPACK"
61
+ "WARNING")
62
+ "A list of supported pragmas.
63
+This list comes from GHC documentation (URL
64
+`https://downloads.haskell.org/~ghc/7.10.1/docs/html/users_guide/pragmas.html'.
65
+")
66
67
(defun haskell-completions-can-grab-prefix ()
68
"Check if the case is appropriate for grabbing completion prefix.
0 commit comments