From bbaed34ae48cb663dc03a0b78f85c94e19856bdd Mon Sep 17 00:00:00 2001 From: Radek Simko Date: Tue, 4 Apr 2023 09:48:20 +0100 Subject: [PATCH] package.json: Introduce semantic token for function --- package.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/package.json b/package.json index 1784d3a83..f802a8966 100644 --- a/package.json +++ b/package.json @@ -156,6 +156,11 @@ "id": "hcl-typePrimitive", "superType": "keyword", "description": "Type (primitive)" + }, + { + "id": "hcl-functionName", + "superType": "function", + "description": "Function name" } ], "semanticTokenScopes": [ @@ -196,6 +201,9 @@ ], "hcl-typePrimitive": [ "keyword.control" + ], + "hcl-functionName": [ + "support.function" ] } }