Skip to content

Commit 36286e0

Browse files
committed
Stub out some potential completion stuff
1 parent 627db43 commit 36286e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PowerShellEditorServices/Services/TextDocument/Handlers/InlayHintHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ from s in symbolReferences
6868
Position = new Position(
6969
s.ScriptRegion.StartLineNumber - 1,
7070
s.ScriptRegion.StartColumnNumber - 1),
71-
Label = s.Type.ToString()
71+
Label = "TypeGoesHere:" //Fixme: Get the type of the symbol
7272
};
7373

7474
return new InlayHintContainer(inlayHints);

0 commit comments

Comments
 (0)