Skip to content

Commit d6e90d3

Browse files
authored
Add '$' as trigger character
1 parent 176c5d6 commit d6e90d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public CompletionRegistrationOptions GetRegistrationOptions()
5757
{
5858
DocumentSelector = LspUtils.PowerShellDocumentSelector,
5959
ResolveProvider = true,
60-
TriggerCharacters = new[] { ".", "-", ":", "\\" }
60+
TriggerCharacters = new[] { ".", "-", ":", "\\", "$" }
6161
};
6262
}
6363

0 commit comments

Comments
 (0)