summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lsp.sml5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lsp.sml b/src/lsp.sml
index 7aa7a98b..50eea923 100644
--- a/src/lsp.sml
+++ b/src/lsp.sml
@@ -833,14 +833,15 @@ fun getCompletionsFromSignatureItems (env: ElabEnv.env) (prefix: string) (search
val k = (Elab.KType, ErrorMsg.dummySpan)
val env = ElabEnv.pushCNamedAs env dtName n k NONE
val env = List.foldl (fn (x, env) => ElabEnv.pushCRel env x k) env xs
+ val typeVarsString = List.foldl (fn (x, acc) => acc ^ " " ^ x) "" xs
in
List.mapPartial (fn (constrName, _, conO) =>
if String.isPrefix searchStr constrName
then SOME { label = prefix ^ constrName
, kind = LspSpec.Function
, detail = case conO of
- NONE => dtName
- | SOME con => ppToString (ElabPrint.p_con env con) 150 ^ " -> " ^ dtName
+ NONE => dtName ^ typeVarsString
+ | SOME con => ppToString (ElabPrint.p_con env con) 150 ^ " -> " ^ dtName ^ typeVarsString
}
else NONE) constrs
end)