Skip to content

Instantly share code, notes, and snippets.

@tonidy
Last active August 6, 2016 05:21
Show Gist options
  • Save tonidy/ed0e9a056a24ebf2a9fc02372ce2a6fe to your computer and use it in GitHub Desktop.
Save tonidy/ed0e9a056a24ebf2a9fc02372ce2a6fe to your computer and use it in GitHub Desktop.
8/6/2016 12:18:58 PM [NORMAL] - Method "Main" at line 145 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Host\Program.cs
PowerShell Editor Services Host v0.6.1.356 starting (pid 4044)...
Host application details:
Name: Visual Studio Code Host
ProfileId: Microsoft.VSCode
Version: 0.6.1
8/6/2016 12:18:59 PM [VERBOSE] - Method "SetExecutionPolicy" at line 945 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Session\PowerShellContext.cs
Current execution policy: ExecutionPolicy.Unrestricted
8/6/2016 12:18:59 PM [NORMAL] - Method "Initialize" at line 186 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Session\PowerShellContext.cs
PowerShell runtime version: 5.0.10586.494
8/6/2016 12:18:59 PM [VERBOSE] - Method "SetProfileVariableInCurrentRunspace" at line 1055 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Session\PowerShellContext.cs
Setting $profile variable in runspace. Current user host profile path: C:\Users\user\Documents\WindowsPowerShell\Microsoft.VSCode_profile.ps1
8/6/2016 12:19:00 PM [VERBOSE] - Method "Initialize" at line 102 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Extensions\ExtensionService.cs
Executing extension API cmdlet script at path: C:\Users\user\AppData\Local\Temp\PSES_ExtensionCmdlets_iejhxpxi.ps1
8/6/2016 12:19:00 PM [VERBOSE] - Method "ExecuteCommand" at line 351 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Session\PowerShellContext.cs
Attempting to execute command(s):
. C:\Users\user\AppData\Local\Temp\PSES_ExtensionCmdlets_iejhxpxi.ps1
8/6/2016 12:19:00 PM [VERBOSE] - Method "OnSessionStateChanged" at line 694 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Session\PowerShellContext.cs
Session state changed --
Old state: Ready
New state: Running
Result: NotFinished
8/6/2016 12:19:00 PM [VERBOSE] - Method "OnSessionStateChanged" at line 694 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Session\PowerShellContext.cs
Session state changed --
Old state: Running
New state: Ready
Result: Completed
8/6/2016 12:19:00 PM [VERBOSE] - Method "ExecuteCommand" at line 392 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Session\PowerShellContext.cs
Execution completed successfully.
8/6/2016 12:19:00 PM [NORMAL] - Method "Main" at line 165 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Host\Program.cs
PowerShell Editor Services Host started!
8/6/2016 12:19:00 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"id": 0,
"method": "initialize",
"params": {
"processId": 7988,
"capabilities": {}
}
}
8/6/2016 12:19:00 PM [VERBOSE] - Method "WriteMessage" at line 58 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageWriter.cs
WRITE MESSAGE:
{
"jsonrpc": "2.0",
"id": "0",
"result": {
"capabilities": {
"textDocumentSync": 2,
"hoverProvider": true,
"completionProvider": {
"resolveProvider": true,
"triggerCharacters": [
".",
"-",
":",
"\\"
]
},
"signatureHelpProvider": {
"triggerCharacters": [
" "
]
},
"definitionProvider": true,
"referencesProvider": true,
"documentHighlightProvider": true,
"documentSymbolProvider": true,
"workspaceSymbolProvider": true
}
}
}
8/6/2016 12:19:00 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"method": "workspace/didChangeConfiguration",
"params": {
"settings": {
"powershell": {
"useX86Host": false,
"enableProfileLoading": true,
"scriptAnalysis": {
"enable": true,
"settingsPath": ""
},
"developer": {
"editorServicesHostPath": "../bin/",
"editorServicesLogLevel": "Verbose",
"editorServicesWaitForDebugger": false
}
}
}
}
}
8/6/2016 12:19:00 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"method": "textDocument/didOpen",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"text": "function Set-PsConsoleTc {\r\n if (Test-Path env:TEAMCITY_VERSION) {\r\n try {\r\n $rawUI = (Get-Host).UI.RawUI\r\n $m = $rawUI.MaxPhysicalWindowSize.Width\r\n $m\r\n $rawUI.BufferSize = New-Object Management.Automation.Host.Size ([Math]::max($m, 500), $rawUI.BufferSize.Height)\r\n $rawUI.WindowSize = New-Object Management.Automation.Host.Size ($m, $rawUI.WindowSize.Height)\r\n #$TCParams = ConvertFrom-StringData (Get-Content $env:TEAMCITY_BUILD_PROPERTIES_FILE -Raw);\r\n } catch {\r\n Write-Host \"TC Set PS Console Failed\"\r\n }\r\n }\r\n}"
}
}
8/6/2016 12:19:00 PM [VERBOSE] - Method "ResolveFilePath" at line 248 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Workspace\Workspace.cs
Resolved path: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:00 PM [VERBOSE] - Method "GetFileBuffer" at line 124 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Workspace\Workspace.cs
Opened file as in-memory buffer: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:00 PM [VERBOSE] - Method "HandleDidOpenTextDocumentNotification" at line 292 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\Server\LanguageServer.cs
Finished opening document.
8/6/2016 12:19:00 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"id": 1,
"method": "textDocument/completion",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"position": {
"line": 5,
"character": 8
}
}
}
8/6/2016 12:19:00 PM [VERBOSE] - Method "ResolveFilePath" at line 248 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Workspace\Workspace.cs
Resolved path: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:01 PM [VERBOSE] - Method "WriteMessage" at line 58 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageWriter.cs
WRITE MESSAGE:
{
"jsonrpc": "2.0",
"id": "1",
"result": [
{
"label": "m",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$m",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 8
}
},
"newText": "$m"
},
"data": null
},
{
"label": "MaximumAliasCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumAliasCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 8
}
},
"newText": "$MaximumAliasCount"
},
"data": null
},
{
"label": "MaximumDriveCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumDriveCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 8
}
},
"newText": "$MaximumDriveCount"
},
"data": null
},
{
"label": "MaximumErrorCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumErrorCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 8
}
},
"newText": "$MaximumErrorCount"
},
"data": null
},
{
"label": "MaximumFunctionCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumFunctionCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 8
}
},
"newText": "$MaximumFunctionCount"
},
"data": null
},
{
"label": "MaximumHistoryCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumHistoryCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 8
}
},
"newText": "$MaximumHistoryCount"
},
"data": null
},
{
"label": "MaximumVariableCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumVariableCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 8
}
},
"newText": "$MaximumVariableCount"
},
"data": null
},
{
"label": "MyInvocation",
"kind": 6,
"detail": "[InvocationInfo]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MyInvocation",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 8
}
},
"newText": "$MyInvocation"
},
"data": null
},
{
"label": "Matches",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Matches",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 8
}
},
"newText": "$Matches"
},
"data": null
}
]
}
8/6/2016 12:19:01 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"method": "textDocument/didChange",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"contentChanges": [
{
"range": {
"start": {
"line": 5,
"character": 8
},
"end": {
"line": 5,
"character": 8
}
},
"rangeLength": 0,
"text": "."
}
]
}
}
8/6/2016 12:19:01 PM [VERBOSE] - Method "ResolveFilePath" at line 248 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Workspace\Workspace.cs
Resolved path: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:01 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"id": 2,
"method": "textDocument/completion",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"position": {
"line": 5,
"character": 9
}
}
}
8/6/2016 12:19:01 PM [VERBOSE] - Method "ResolveFilePath" at line 248 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Workspace\Workspace.cs
Resolved path: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:01 PM [VERBOSE] - Method "WriteMessage" at line 58 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageWriter.cs
WRITE MESSAGE:
{
"jsonrpc": "2.0",
"id": "2",
"result": [
{
"label": "CompareTo",
"kind": 2,
"detail": null,
"documentation": "int CompareTo(System.Object value)\nint CompareTo(int value)\nint IComparable.CompareTo(System.Object obj)\nint IComparable[int].CompareTo(int other)",
"sortText": null,
"filterText": null,
"insertText": "CompareTo(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "CompareTo("
},
"data": null
},
{
"label": "Equals",
"kind": 2,
"detail": null,
"documentation": "bool Equals(System.Object obj)\nbool Equals(int obj)\nbool IEquatable[int].Equals(int other)",
"sortText": null,
"filterText": null,
"insertText": "Equals(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "Equals("
},
"data": null
},
{
"label": "GetHashCode",
"kind": 2,
"detail": null,
"documentation": "int GetHashCode()",
"sortText": null,
"filterText": null,
"insertText": "GetHashCode(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "GetHashCode("
},
"data": null
},
{
"label": "GetType",
"kind": 2,
"detail": null,
"documentation": "type GetType()",
"sortText": null,
"filterText": null,
"insertText": "GetType(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "GetType("
},
"data": null
},
{
"label": "GetTypeCode",
"kind": 2,
"detail": null,
"documentation": "System.TypeCode GetTypeCode()\nSystem.TypeCode IConvertible.GetTypeCode()",
"sortText": null,
"filterText": null,
"insertText": "GetTypeCode(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "GetTypeCode("
},
"data": null
},
{
"label": "ToBoolean",
"kind": 2,
"detail": null,
"documentation": "bool IConvertible.ToBoolean(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToBoolean(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToBoolean("
},
"data": null
},
{
"label": "ToByte",
"kind": 2,
"detail": null,
"documentation": "byte IConvertible.ToByte(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToByte(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToByte("
},
"data": null
},
{
"label": "ToChar",
"kind": 2,
"detail": null,
"documentation": "char IConvertible.ToChar(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToChar(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToChar("
},
"data": null
},
{
"label": "ToDateTime",
"kind": 2,
"detail": null,
"documentation": "datetime IConvertible.ToDateTime(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToDateTime(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToDateTime("
},
"data": null
},
{
"label": "ToDecimal",
"kind": 2,
"detail": null,
"documentation": "decimal IConvertible.ToDecimal(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToDecimal(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToDecimal("
},
"data": null
},
{
"label": "ToDouble",
"kind": 2,
"detail": null,
"documentation": "double IConvertible.ToDouble(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToDouble(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToDouble("
},
"data": null
},
{
"label": "ToInt16",
"kind": 2,
"detail": null,
"documentation": "int16 IConvertible.ToInt16(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToInt16(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToInt16("
},
"data": null
},
{
"label": "ToInt32",
"kind": 2,
"detail": null,
"documentation": "int IConvertible.ToInt32(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToInt32(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToInt32("
},
"data": null
},
{
"label": "ToInt64",
"kind": 2,
"detail": null,
"documentation": "long IConvertible.ToInt64(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToInt64(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToInt64("
},
"data": null
},
{
"label": "ToSByte",
"kind": 2,
"detail": null,
"documentation": "sbyte IConvertible.ToSByte(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToSByte(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToSByte("
},
"data": null
},
{
"label": "ToSingle",
"kind": 2,
"detail": null,
"documentation": "float IConvertible.ToSingle(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToSingle(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToSingle("
},
"data": null
},
{
"label": "ToString",
"kind": 2,
"detail": null,
"documentation": "string ToString()\nstring ToString(string format)\nstring ToString(System.IFormatProvider provider)\nstring ToString(string format, System.IFormatProvider provider)\nstring IFormattable.ToString(string format, System.IFormatProvider formatProvider)\nstring IConvertible.ToString(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToString(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToString("
},
"data": null
},
{
"label": "ToType",
"kind": 2,
"detail": null,
"documentation": "System.Object IConvertible.ToType(type conversionType, System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToType(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToType("
},
"data": null
},
{
"label": "ToUInt16",
"kind": 2,
"detail": null,
"documentation": "uint16 IConvertible.ToUInt16(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToUInt16(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToUInt16("
},
"data": null
},
{
"label": "ToUInt32",
"kind": 2,
"detail": null,
"documentation": "uint32 IConvertible.ToUInt32(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToUInt32(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToUInt32("
},
"data": null
},
{
"label": "ToUInt64",
"kind": 2,
"detail": null,
"documentation": "uint64 IConvertible.ToUInt64(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToUInt64(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToUInt64("
},
"data": null
}
]
}
8/6/2016 12:19:01 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"id": 3,
"method": "completionItem/resolve",
"params": {
"label": "CompareTo",
"detail": null,
"documentation": "int CompareTo(System.Object value)\nint CompareTo(int value)\nint IComparable.CompareTo(System.Object obj)\nint IComparable[int].CompareTo(int other)",
"filterText": null,
"insertText": "CompareTo(",
"kind": 2,
"sortText": null,
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "CompareTo("
},
"data": null
}
}
8/6/2016 12:19:01 PM [VERBOSE] - Method "WriteMessage" at line 58 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageWriter.cs
WRITE MESSAGE:
{
"jsonrpc": "2.0",
"id": "3",
"result": {
"label": "CompareTo",
"kind": 2,
"detail": null,
"documentation": "int CompareTo(System.Object value)\nint CompareTo(int value)\nint IComparable.CompareTo(System.Object obj)\nint IComparable[int].CompareTo(int other)",
"sortText": null,
"filterText": null,
"insertText": "CompareTo(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "CompareTo("
},
"data": null
}
}
8/6/2016 12:19:01 PM [VERBOSE] - Method "DelayThenInvokeDiagnostics" at line 1013 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\Server\LanguageServer.cs
Analyzing script file: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:02 PM [VERBOSE] - Method "DelayThenInvokeDiagnostics" at line 1019 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\Server\LanguageServer.cs
Analysis complete.
8/6/2016 12:19:02 PM [VERBOSE] - Method "WriteMessage" at line 58 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageWriter.cs
WRITE MESSAGE:
{
"jsonrpc": "2.0",
"method": "textDocument/publishDiagnostics",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"diagnostics": []
}
}
8/6/2016 12:19:03 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"method": "textDocument/didChange",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"contentChanges": [
{
"range": {
"start": {
"line": 5,
"character": 8
},
"end": {
"line": 5,
"character": 9
}
},
"rangeLength": 1,
"text": ""
}
]
}
}
8/6/2016 12:19:03 PM [VERBOSE] - Method "ResolveFilePath" at line 248 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Workspace\Workspace.cs
Resolved path: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:04 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"method": "textDocument/didChange",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"contentChanges": [
{
"range": {
"start": {
"line": 5,
"character": 7
},
"end": {
"line": 5,
"character": 8
}
},
"rangeLength": 1,
"text": ""
}
]
}
}
8/6/2016 12:19:04 PM [VERBOSE] - Method "ResolveFilePath" at line 248 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Workspace\Workspace.cs
Resolved path: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:04 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"id": 4,
"method": "textDocument/completion",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"position": {
"line": 5,
"character": 7
}
}
}
8/6/2016 12:19:04 PM [VERBOSE] - Method "ResolveFilePath" at line 248 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Workspace\Workspace.cs
Resolved path: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:04 PM [VERBOSE] - Method "WriteMessage" at line 58 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageWriter.cs
WRITE MESSAGE:
{
"jsonrpc": "2.0",
"id": "4",
"result": [
{
"label": "rawUI",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$rawUI",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$rawUI"
},
"data": null
},
{
"label": "m",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$m",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$m"
},
"data": null
},
{
"label": "$",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "${$}",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "${$}"
},
"data": null
},
{
"label": "?",
"kind": 6,
"detail": "[bool]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$?",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$?"
},
"data": null
},
{
"label": "^",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "${^}",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "${^}"
},
"data": null
},
{
"label": "ast",
"kind": 6,
"detail": "[ScriptBlockAst]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ast",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ast"
},
"data": null
},
{
"label": "ConfirmPreference",
"kind": 6,
"detail": "[ConfirmImpact]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ConfirmPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ConfirmPreference"
},
"data": null
},
{
"label": "ConsoleFileName",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ConsoleFileName",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ConsoleFileName"
},
"data": null
},
{
"label": "cursorColumn",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$cursorColumn",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$cursorColumn"
},
"data": null
},
{
"label": "DebugPreference",
"kind": 6,
"detail": "[ActionPreference]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$DebugPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$DebugPreference"
},
"data": null
},
{
"label": "Error",
"kind": 6,
"detail": "[ArrayList]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Error",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Error"
},
"data": null
},
{
"label": "ErrorActionPreference",
"kind": 6,
"detail": "[ActionPreference]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ErrorActionPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ErrorActionPreference"
},
"data": null
},
{
"label": "ErrorView",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ErrorView",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ErrorView"
},
"data": null
},
{
"label": "ExecutionContext",
"kind": 6,
"detail": "[EngineIntrinsics]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ExecutionContext",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ExecutionContext"
},
"data": null
},
{
"label": "false",
"kind": 6,
"detail": "[bool]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$false",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$false"
},
"data": null
},
{
"label": "FormatEnumerationLimit",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$FormatEnumerationLimit",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$FormatEnumerationLimit"
},
"data": null
},
{
"label": "HOME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$HOME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$HOME"
},
"data": null
},
{
"label": "Host",
"kind": 6,
"detail": "[InternalHost]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Host",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Host"
},
"data": null
},
{
"label": "InformationPreference",
"kind": 6,
"detail": "[ActionPreference]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$InformationPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$InformationPreference"
},
"data": null
},
{
"label": "input",
"kind": 6,
"detail": "[Object[]]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$input",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$input"
},
"data": null
},
{
"label": "inputScript",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$inputScript",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$inputScript"
},
"data": null
},
{
"label": "MaximumAliasCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumAliasCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MaximumAliasCount"
},
"data": null
},
{
"label": "MaximumDriveCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumDriveCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MaximumDriveCount"
},
"data": null
},
{
"label": "MaximumErrorCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumErrorCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MaximumErrorCount"
},
"data": null
},
{
"label": "MaximumFunctionCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumFunctionCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MaximumFunctionCount"
},
"data": null
},
{
"label": "MaximumHistoryCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumHistoryCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MaximumHistoryCount"
},
"data": null
},
{
"label": "MaximumVariableCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumVariableCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MaximumVariableCount"
},
"data": null
},
{
"label": "MyInvocation",
"kind": 6,
"detail": "[InvocationInfo]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MyInvocation",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MyInvocation"
},
"data": null
},
{
"label": "NestedPromptLevel",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$NestedPromptLevel",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$NestedPromptLevel"
},
"data": null
},
{
"label": "null",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$null",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$null"
},
"data": null
},
{
"label": "options",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$options",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$options"
},
"data": null
},
{
"label": "OutputEncoding",
"kind": 6,
"detail": "[ASCIIEncoding]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$OutputEncoding",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$OutputEncoding"
},
"data": null
},
{
"label": "PID",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PID",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PID"
},
"data": null
},
{
"label": "positionOfCursor",
"kind": 6,
"detail": "[InternalScriptPosition]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$positionOfCursor",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$positionOfCursor"
},
"data": null
},
{
"label": "profile",
"kind": 6,
"detail": "[psobject]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$profile",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$profile"
},
"data": null
},
{
"label": "ProgressPreference",
"kind": 6,
"detail": "[ActionPreference]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ProgressPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ProgressPreference"
},
"data": null
},
{
"label": "PSBoundParameters",
"kind": 6,
"detail": "[PSBoundParametersDictionary]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSBoundParameters",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSBoundParameters"
},
"data": null
},
{
"label": "PSCmdlet",
"kind": 6,
"detail": "[PSScriptCmdlet]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSCmdlet",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSCmdlet"
},
"data": null
},
{
"label": "PSCommandPath",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSCommandPath",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSCommandPath"
},
"data": null
},
{
"label": "PSCulture",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSCulture",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSCulture"
},
"data": null
},
{
"label": "PSDefaultParameterValues",
"kind": 6,
"detail": "[DefaultParameterDictionary]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSDefaultParameterValues",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSDefaultParameterValues"
},
"data": null
},
{
"label": "psEditor",
"kind": 6,
"detail": "[EditorObject]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$psEditor",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$psEditor"
},
"data": null
},
{
"label": "PSEmailServer",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSEmailServer",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSEmailServer"
},
"data": null
},
{
"label": "PSHOME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSHOME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSHOME"
},
"data": null
},
{
"label": "PSScriptRoot",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSScriptRoot",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSScriptRoot"
},
"data": null
},
{
"label": "PSSessionApplicationName",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSSessionApplicationName",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSSessionApplicationName"
},
"data": null
},
{
"label": "PSSessionConfigurationName",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSSessionConfigurationName",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSSessionConfigurationName"
},
"data": null
},
{
"label": "PSSessionOption",
"kind": 6,
"detail": "[PSSessionOption]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSSessionOption",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSSessionOption"
},
"data": null
},
{
"label": "PSUICulture",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSUICulture",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSUICulture"
},
"data": null
},
{
"label": "PSVersionTable",
"kind": 6,
"detail": "[hashtable]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSVersionTable",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSVersionTable"
},
"data": null
},
{
"label": "PWD",
"kind": 6,
"detail": "[PathInfo]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PWD",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PWD"
},
"data": null
},
{
"label": "ShellId",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ShellId",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ShellId"
},
"data": null
},
{
"label": "StackTrace",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$StackTrace",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$StackTrace"
},
"data": null
},
{
"label": "tokens",
"kind": 6,
"detail": "[Token[]]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$tokens",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$tokens"
},
"data": null
},
{
"label": "true",
"kind": 6,
"detail": "[bool]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$true",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$true"
},
"data": null
},
{
"label": "VerbosePreference",
"kind": 6,
"detail": "[ActionPreference]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$VerbosePreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$VerbosePreference"
},
"data": null
},
{
"label": "WarningPreference",
"kind": 6,
"detail": "[ActionPreference]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$WarningPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$WarningPreference"
},
"data": null
},
{
"label": "WhatIfPreference",
"kind": 6,
"detail": "[bool]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$WhatIfPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$WhatIfPreference"
},
"data": null
},
{
"label": "env:ALLUSERSPROFILE",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ALLUSERSPROFILE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ALLUSERSPROFILE"
},
"data": null
},
{
"label": "env:AMD_ENTRYPOINT",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:AMD_ENTRYPOINT",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:AMD_ENTRYPOINT"
},
"data": null
},
{
"label": "env:ANDROID_HOME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ANDROID_HOME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ANDROID_HOME"
},
"data": null
},
{
"label": "env:ANDROID_NDK_PATH",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ANDROID_NDK_PATH",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ANDROID_NDK_PATH"
},
"data": null
},
{
"label": "env:APPDATA",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:APPDATA",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:APPDATA"
},
"data": null
},
{
"label": "env:ATOM_SHELL_INTERNAL_RUN_AS_NODE",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ATOM_SHELL_INTERNAL_RUN_AS_NODE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ATOM_SHELL_INTERNAL_RUN_AS_NODE"
},
"data": null
},
{
"label": "env:ChocolateyInstall",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ChocolateyInstall",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ChocolateyInstall"
},
"data": null
},
{
"label": "env:ChocolateyLastPathUpdate",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ChocolateyLastPathUpdate",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ChocolateyLastPathUpdate"
},
"data": null
},
{
"label": "env:ChocolateyToolsLocation",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ChocolateyToolsLocation",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ChocolateyToolsLocation"
},
"data": null
},
{
"label": "env:CLASSPATH",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:CLASSPATH",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:CLASSPATH"
},
"data": null
},
{
"label": "env:CommonProgramFiles",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:CommonProgramFiles",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:CommonProgramFiles"
},
"data": null
},
{
"label": "env:CommonProgramFiles(x86)",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "${env:CommonProgramFiles(x86)}",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "${env:CommonProgramFiles(x86)}"
},
"data": null
},
{
"label": "env:CommonProgramW6432",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:CommonProgramW6432",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:CommonProgramW6432"
},
"data": null
},
{
"label": "env:COMPUTERNAME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:COMPUTERNAME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:COMPUTERNAME"
},
"data": null
},
{
"label": "env:ComSpec",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ComSpec",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ComSpec"
},
"data": null
},
{
"label": "env:DOCKER_TOOLBOX_INSTALL_PATH",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:DOCKER_TOOLBOX_INSTALL_PATH",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:DOCKER_TOOLBOX_INSTALL_PATH"
},
"data": null
},
{
"label": "env:DOTNET_CLI_TELEMETRY_OPTOUT",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:DOTNET_CLI_TELEMETRY_OPTOUT",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:DOTNET_CLI_TELEMETRY_OPTOUT"
},
"data": null
},
{
"label": "env:GOOGLE_API_KEY",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:GOOGLE_API_KEY",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:GOOGLE_API_KEY"
},
"data": null
},
{
"label": "env:GOPATH",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:GOPATH",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:GOPATH"
},
"data": null
},
{
"label": "env:GOROOT",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:GOROOT",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:GOROOT"
},
"data": null
},
{
"label": "env:HOMEDRIVE",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:HOMEDRIVE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:HOMEDRIVE"
},
"data": null
},
{
"label": "env:HOMEPATH",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:HOMEPATH",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:HOMEPATH"
},
"data": null
},
{
"label": "env:JAVA_HOME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:JAVA_HOME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:JAVA_HOME"
},
"data": null
},
{
"label": "env:LOCALAPPDATA",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:LOCALAPPDATA",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:LOCALAPPDATA"
},
"data": null
},
{
"label": "env:LOGONSERVER",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:LOGONSERVER",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:LOGONSERVER"
},
"data": null
},
{
"label": "env:NUMBER_OF_PROCESSORS",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:NUMBER_OF_PROCESSORS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:NUMBER_OF_PROCESSORS"
},
"data": null
},
{
"label": "env:OS",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:OS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:OS"
},
"data": null
},
{
"label": "env:Path",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:Path",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:Path"
},
"data": null
},
{
"label": "env:PATHEXT",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PATHEXT",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PATHEXT"
},
"data": null
},
{
"label": "env:PIPE_LOGGING",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PIPE_LOGGING",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PIPE_LOGGING"
},
"data": null
},
{
"label": "env:PROCESSOR_ARCHITECTURE",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PROCESSOR_ARCHITECTURE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PROCESSOR_ARCHITECTURE"
},
"data": null
},
{
"label": "env:PROCESSOR_IDENTIFIER",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PROCESSOR_IDENTIFIER",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PROCESSOR_IDENTIFIER"
},
"data": null
},
{
"label": "env:PROCESSOR_LEVEL",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PROCESSOR_LEVEL",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PROCESSOR_LEVEL"
},
"data": null
},
{
"label": "env:PROCESSOR_REVISION",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PROCESSOR_REVISION",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PROCESSOR_REVISION"
},
"data": null
},
{
"label": "env:ProgramData",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ProgramData",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ProgramData"
},
"data": null
},
{
"label": "env:ProgramFiles",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ProgramFiles",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ProgramFiles"
},
"data": null
},
{
"label": "env:ProgramFiles(x86)",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "${env:ProgramFiles(x86)}",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "${env:ProgramFiles(x86)}"
},
"data": null
},
{
"label": "env:ProgramW6432",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ProgramW6432",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ProgramW6432"
},
"data": null
},
{
"label": "env:PSModulePath",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PSModulePath",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PSModulePath"
},
"data": null
},
{
"label": "env:PUBLIC",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PUBLIC",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PUBLIC"
},
"data": null
},
{
"label": "env:SESSIONNAME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:SESSIONNAME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:SESSIONNAME"
},
"data": null
},
{
"label": "env:SystemDrive",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:SystemDrive",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:SystemDrive"
},
"data": null
},
{
"label": "env:SystemRoot",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:SystemRoot",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:SystemRoot"
},
"data": null
},
{
"label": "env:TEMP",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:TEMP",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:TEMP"
},
"data": null
},
{
"label": "env:TMP",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:TMP",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:TMP"
},
"data": null
},
{
"label": "env:TVT",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:TVT",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:TVT"
},
"data": null
},
{
"label": "env:USERDNSDOMAIN",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:USERDNSDOMAIN",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:USERDNSDOMAIN"
},
"data": null
},
{
"label": "env:USERDOMAIN",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:USERDOMAIN",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:USERDOMAIN"
},
"data": null
},
{
"label": "env:USERDOMAIN_ROAMINGPROFILE",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:USERDOMAIN_ROAMINGPROFILE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:USERDOMAIN_ROAMINGPROFILE"
},
"data": null
},
{
"label": "env:USERNAME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:USERNAME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:USERNAME"
},
"data": null
},
{
"label": "env:USERPROFILE",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:USERPROFILE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:USERPROFILE"
},
"data": null
},
{
"label": "env:VBOX_MSI_INSTALL_PATH",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VBOX_MSI_INSTALL_PATH",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VBOX_MSI_INSTALL_PATH"
},
"data": null
},
{
"label": "env:VERBOSE_LOGGING",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VERBOSE_LOGGING",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VERBOSE_LOGGING"
},
"data": null
},
{
"label": "env:VS110COMNTOOLS",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VS110COMNTOOLS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VS110COMNTOOLS"
},
"data": null
},
{
"label": "env:VS120COMNTOOLS",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VS120COMNTOOLS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VS120COMNTOOLS"
},
"data": null
},
{
"label": "env:VS140COMNTOOLS",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VS140COMNTOOLS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VS140COMNTOOLS"
},
"data": null
},
{
"label": "env:VSCODE_CWD",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSCODE_CWD",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSCODE_CWD"
},
"data": null
},
{
"label": "env:VSCODE_IPC_HOOK",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSCODE_IPC_HOOK",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSCODE_IPC_HOOK"
},
"data": null
},
{
"label": "env:VSCODE_NLS_CONFIG",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSCODE_NLS_CONFIG",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSCODE_NLS_CONFIG"
},
"data": null
},
{
"label": "env:VSCODE_PID",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSCODE_PID",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSCODE_PID"
},
"data": null
},
{
"label": "env:VSCODE_SHARED_IPC_HOOK",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSCODE_SHARED_IPC_HOOK",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSCODE_SHARED_IPC_HOOK"
},
"data": null
},
{
"label": "env:VSCODE_TSJS",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSCODE_TSJS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSCODE_TSJS"
},
"data": null
},
{
"label": "env:VSSDK140Install",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSSDK140Install",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSSDK140Install"
},
"data": null
},
{
"label": "env:WALLABY_PRODUCTION",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:WALLABY_PRODUCTION",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:WALLABY_PRODUCTION"
},
"data": null
},
{
"label": "env:windir",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:windir",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:windir"
},
"data": null
},
{
"label": "_",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$_",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$_"
},
"data": null
},
{
"label": "args",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$args",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$args"
},
"data": null
},
{
"label": "CurrentlyExecutingCommand",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$CurrentlyExecutingCommand",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$CurrentlyExecutingCommand"
},
"data": null
},
{
"label": "foreach",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$foreach",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$foreach"
},
"data": null
},
{
"label": "LASTEXITCODE",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LASTEXITCODE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LASTEXITCODE"
},
"data": null
},
{
"label": "LogCommandHealthEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogCommandHealthEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogCommandHealthEvent"
},
"data": null
},
{
"label": "LogCommandLifecycleEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogCommandLifecycleEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogCommandLifecycleEvent"
},
"data": null
},
{
"label": "LogEngineHealthEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogEngineHealthEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogEngineHealthEvent"
},
"data": null
},
{
"label": "LogEngineLifecycleEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogEngineLifecycleEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogEngineLifecycleEvent"
},
"data": null
},
{
"label": "LogProviderHealthEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogProviderHealthEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogProviderHealthEvent"
},
"data": null
},
{
"label": "LogProviderLifecycleEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogProviderLifecycleEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogProviderLifecycleEvent"
},
"data": null
},
{
"label": "LogSettingsEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogSettingsEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogSettingsEvent"
},
"data": null
},
{
"label": "Matches",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Matches",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Matches"
},
"data": null
},
{
"label": "OFS",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$OFS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$OFS"
},
"data": null
},
{
"label": "PSDebugContext",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSDebugContext",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSDebugContext"
},
"data": null
},
{
"label": "PSItem",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSItem",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSItem"
},
"data": null
},
{
"label": "PSLogUserData",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSLogUserData",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSLogUserData"
},
"data": null
},
{
"label": "PSModuleAutoLoadingPreference",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSModuleAutoLoadingPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSModuleAutoLoadingPreference"
},
"data": null
},
{
"label": "switch",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$switch",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$switch"
},
"data": null
},
{
"label": "this",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$this",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$this"
},
"data": null
},
{
"label": "VerboseHelpErrors",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$VerboseHelpErrors",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$VerboseHelpErrors"
},
"data": null
},
{
"label": "Alias",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Alias:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Alias:"
},
"data": null
},
{
"label": "Cert",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Cert:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Cert:"
},
"data": null
},
{
"label": "Env",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Env:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Env:"
},
"data": null
},
{
"label": "Function",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Function:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Function:"
},
"data": null
},
{
"label": "HKCU",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$HKCU:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$HKCU:"
},
"data": null
},
{
"label": "HKLM",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$HKLM:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$HKLM:"
},
"data": null
},
{
"label": "Variable",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Variable:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Variable:"
},
"data": null
},
{
"label": "WSMan",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$WSMan:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$WSMan:"
},
"data": null
},
{
"label": "Global:",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Global:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Global:"
},
"data": null
},
{
"label": "Local:",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Local:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Local:"
},
"data": null
},
{
"label": "Script:",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Script:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Script:"
},
"data": null
},
{
"label": "Private:",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Private:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Private:"
},
"data": null
}
]
}
8/6/2016 12:19:04 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"id": 5,
"method": "completionItem/resolve",
"params": {
"label": "$",
"detail": null,
"documentation": null,
"filterText": null,
"insertText": "${$}",
"kind": 6,
"sortText": null,
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "${$}"
},
"data": null
}
}
8/6/2016 12:19:04 PM [VERBOSE] - Method "WriteMessage" at line 58 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageWriter.cs
WRITE MESSAGE:
{
"jsonrpc": "2.0",
"id": "5",
"result": {
"label": "$",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "${$}",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "${$}"
},
"data": null
}
}
8/6/2016 12:19:04 PM [VERBOSE] - Method "DelayThenInvokeDiagnostics" at line 1013 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\Server\LanguageServer.cs
Analyzing script file: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:04 PM [VERBOSE] - Method "DelayThenInvokeDiagnostics" at line 1019 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\Server\LanguageServer.cs
Analysis complete.
8/6/2016 12:19:04 PM [VERBOSE] - Method "WriteMessage" at line 58 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageWriter.cs
WRITE MESSAGE:
{
"jsonrpc": "2.0",
"method": "textDocument/publishDiagnostics",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"diagnostics": []
}
}
8/6/2016 12:19:07 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"method": "textDocument/didChange",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"contentChanges": [
{
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"rangeLength": 1,
"text": ""
}
]
}
}
8/6/2016 12:19:07 PM [VERBOSE] - Method "ResolveFilePath" at line 248 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Workspace\Workspace.cs
Resolved path: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:07 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"method": "textDocument/didChange",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"contentChanges": [
{
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 6
}
},
"rangeLength": 0,
"text": "$"
}
]
}
}
8/6/2016 12:19:07 PM [VERBOSE] - Method "ResolveFilePath" at line 248 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Workspace\Workspace.cs
Resolved path: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:07 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"id": 6,
"method": "textDocument/completion",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"position": {
"line": 5,
"character": 7
}
}
}
8/6/2016 12:19:07 PM [VERBOSE] - Method "ResolveFilePath" at line 248 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Workspace\Workspace.cs
Resolved path: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:07 PM [VERBOSE] - Method "WriteMessage" at line 58 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageWriter.cs
WRITE MESSAGE:
{
"jsonrpc": "2.0",
"id": "6",
"result": [
{
"label": "rawUI",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$rawUI",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$rawUI"
},
"data": null
},
{
"label": "m",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$m",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$m"
},
"data": null
},
{
"label": "$",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "${$}",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "${$}"
},
"data": null
},
{
"label": "?",
"kind": 6,
"detail": "[bool]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$?",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$?"
},
"data": null
},
{
"label": "^",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "${^}",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "${^}"
},
"data": null
},
{
"label": "ast",
"kind": 6,
"detail": "[ScriptBlockAst]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ast",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ast"
},
"data": null
},
{
"label": "ConfirmPreference",
"kind": 6,
"detail": "[ConfirmImpact]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ConfirmPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ConfirmPreference"
},
"data": null
},
{
"label": "ConsoleFileName",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ConsoleFileName",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ConsoleFileName"
},
"data": null
},
{
"label": "cursorColumn",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$cursorColumn",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$cursorColumn"
},
"data": null
},
{
"label": "DebugPreference",
"kind": 6,
"detail": "[ActionPreference]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$DebugPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$DebugPreference"
},
"data": null
},
{
"label": "Error",
"kind": 6,
"detail": "[ArrayList]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Error",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Error"
},
"data": null
},
{
"label": "ErrorActionPreference",
"kind": 6,
"detail": "[ActionPreference]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ErrorActionPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ErrorActionPreference"
},
"data": null
},
{
"label": "ErrorView",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ErrorView",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ErrorView"
},
"data": null
},
{
"label": "ExecutionContext",
"kind": 6,
"detail": "[EngineIntrinsics]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ExecutionContext",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ExecutionContext"
},
"data": null
},
{
"label": "false",
"kind": 6,
"detail": "[bool]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$false",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$false"
},
"data": null
},
{
"label": "FormatEnumerationLimit",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$FormatEnumerationLimit",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$FormatEnumerationLimit"
},
"data": null
},
{
"label": "HOME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$HOME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$HOME"
},
"data": null
},
{
"label": "Host",
"kind": 6,
"detail": "[InternalHost]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Host",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Host"
},
"data": null
},
{
"label": "InformationPreference",
"kind": 6,
"detail": "[ActionPreference]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$InformationPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$InformationPreference"
},
"data": null
},
{
"label": "input",
"kind": 6,
"detail": "[Object[]]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$input",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$input"
},
"data": null
},
{
"label": "inputScript",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$inputScript",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$inputScript"
},
"data": null
},
{
"label": "MaximumAliasCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumAliasCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MaximumAliasCount"
},
"data": null
},
{
"label": "MaximumDriveCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumDriveCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MaximumDriveCount"
},
"data": null
},
{
"label": "MaximumErrorCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumErrorCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MaximumErrorCount"
},
"data": null
},
{
"label": "MaximumFunctionCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumFunctionCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MaximumFunctionCount"
},
"data": null
},
{
"label": "MaximumHistoryCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumHistoryCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MaximumHistoryCount"
},
"data": null
},
{
"label": "MaximumVariableCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumVariableCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MaximumVariableCount"
},
"data": null
},
{
"label": "MyInvocation",
"kind": 6,
"detail": "[InvocationInfo]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MyInvocation",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MyInvocation"
},
"data": null
},
{
"label": "NestedPromptLevel",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$NestedPromptLevel",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$NestedPromptLevel"
},
"data": null
},
{
"label": "null",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$null",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$null"
},
"data": null
},
{
"label": "options",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$options",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$options"
},
"data": null
},
{
"label": "OutputEncoding",
"kind": 6,
"detail": "[ASCIIEncoding]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$OutputEncoding",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$OutputEncoding"
},
"data": null
},
{
"label": "PID",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PID",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PID"
},
"data": null
},
{
"label": "positionOfCursor",
"kind": 6,
"detail": "[InternalScriptPosition]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$positionOfCursor",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$positionOfCursor"
},
"data": null
},
{
"label": "profile",
"kind": 6,
"detail": "[psobject]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$profile",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$profile"
},
"data": null
},
{
"label": "ProgressPreference",
"kind": 6,
"detail": "[ActionPreference]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ProgressPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ProgressPreference"
},
"data": null
},
{
"label": "PSBoundParameters",
"kind": 6,
"detail": "[PSBoundParametersDictionary]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSBoundParameters",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSBoundParameters"
},
"data": null
},
{
"label": "PSCmdlet",
"kind": 6,
"detail": "[PSScriptCmdlet]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSCmdlet",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSCmdlet"
},
"data": null
},
{
"label": "PSCommandPath",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSCommandPath",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSCommandPath"
},
"data": null
},
{
"label": "PSCulture",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSCulture",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSCulture"
},
"data": null
},
{
"label": "PSDefaultParameterValues",
"kind": 6,
"detail": "[DefaultParameterDictionary]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSDefaultParameterValues",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSDefaultParameterValues"
},
"data": null
},
{
"label": "psEditor",
"kind": 6,
"detail": "[EditorObject]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$psEditor",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$psEditor"
},
"data": null
},
{
"label": "PSEmailServer",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSEmailServer",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSEmailServer"
},
"data": null
},
{
"label": "PSHOME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSHOME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSHOME"
},
"data": null
},
{
"label": "PSScriptRoot",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSScriptRoot",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSScriptRoot"
},
"data": null
},
{
"label": "PSSessionApplicationName",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSSessionApplicationName",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSSessionApplicationName"
},
"data": null
},
{
"label": "PSSessionConfigurationName",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSSessionConfigurationName",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSSessionConfigurationName"
},
"data": null
},
{
"label": "PSSessionOption",
"kind": 6,
"detail": "[PSSessionOption]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSSessionOption",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSSessionOption"
},
"data": null
},
{
"label": "PSUICulture",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSUICulture",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSUICulture"
},
"data": null
},
{
"label": "PSVersionTable",
"kind": 6,
"detail": "[hashtable]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSVersionTable",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSVersionTable"
},
"data": null
},
{
"label": "PWD",
"kind": 6,
"detail": "[PathInfo]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PWD",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PWD"
},
"data": null
},
{
"label": "ShellId",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ShellId",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ShellId"
},
"data": null
},
{
"label": "StackTrace",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$StackTrace",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$StackTrace"
},
"data": null
},
{
"label": "tokens",
"kind": 6,
"detail": "[Token[]]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$tokens",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$tokens"
},
"data": null
},
{
"label": "true",
"kind": 6,
"detail": "[bool]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$true",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$true"
},
"data": null
},
{
"label": "VerbosePreference",
"kind": 6,
"detail": "[ActionPreference]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$VerbosePreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$VerbosePreference"
},
"data": null
},
{
"label": "WarningPreference",
"kind": 6,
"detail": "[ActionPreference]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$WarningPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$WarningPreference"
},
"data": null
},
{
"label": "WhatIfPreference",
"kind": 6,
"detail": "[bool]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$WhatIfPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$WhatIfPreference"
},
"data": null
},
{
"label": "env:ALLUSERSPROFILE",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ALLUSERSPROFILE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ALLUSERSPROFILE"
},
"data": null
},
{
"label": "env:AMD_ENTRYPOINT",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:AMD_ENTRYPOINT",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:AMD_ENTRYPOINT"
},
"data": null
},
{
"label": "env:ANDROID_HOME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ANDROID_HOME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ANDROID_HOME"
},
"data": null
},
{
"label": "env:ANDROID_NDK_PATH",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ANDROID_NDK_PATH",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ANDROID_NDK_PATH"
},
"data": null
},
{
"label": "env:APPDATA",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:APPDATA",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:APPDATA"
},
"data": null
},
{
"label": "env:ATOM_SHELL_INTERNAL_RUN_AS_NODE",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ATOM_SHELL_INTERNAL_RUN_AS_NODE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ATOM_SHELL_INTERNAL_RUN_AS_NODE"
},
"data": null
},
{
"label": "env:ChocolateyInstall",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ChocolateyInstall",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ChocolateyInstall"
},
"data": null
},
{
"label": "env:ChocolateyLastPathUpdate",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ChocolateyLastPathUpdate",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ChocolateyLastPathUpdate"
},
"data": null
},
{
"label": "env:ChocolateyToolsLocation",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ChocolateyToolsLocation",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ChocolateyToolsLocation"
},
"data": null
},
{
"label": "env:CLASSPATH",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:CLASSPATH",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:CLASSPATH"
},
"data": null
},
{
"label": "env:CommonProgramFiles",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:CommonProgramFiles",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:CommonProgramFiles"
},
"data": null
},
{
"label": "env:CommonProgramFiles(x86)",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "${env:CommonProgramFiles(x86)}",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "${env:CommonProgramFiles(x86)}"
},
"data": null
},
{
"label": "env:CommonProgramW6432",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:CommonProgramW6432",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:CommonProgramW6432"
},
"data": null
},
{
"label": "env:COMPUTERNAME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:COMPUTERNAME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:COMPUTERNAME"
},
"data": null
},
{
"label": "env:ComSpec",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ComSpec",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ComSpec"
},
"data": null
},
{
"label": "env:DOCKER_TOOLBOX_INSTALL_PATH",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:DOCKER_TOOLBOX_INSTALL_PATH",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:DOCKER_TOOLBOX_INSTALL_PATH"
},
"data": null
},
{
"label": "env:DOTNET_CLI_TELEMETRY_OPTOUT",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:DOTNET_CLI_TELEMETRY_OPTOUT",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:DOTNET_CLI_TELEMETRY_OPTOUT"
},
"data": null
},
{
"label": "env:GOOGLE_API_KEY",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:GOOGLE_API_KEY",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:GOOGLE_API_KEY"
},
"data": null
},
{
"label": "env:GOPATH",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:GOPATH",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:GOPATH"
},
"data": null
},
{
"label": "env:GOROOT",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:GOROOT",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:GOROOT"
},
"data": null
},
{
"label": "env:HOMEDRIVE",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:HOMEDRIVE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:HOMEDRIVE"
},
"data": null
},
{
"label": "env:HOMEPATH",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:HOMEPATH",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:HOMEPATH"
},
"data": null
},
{
"label": "env:JAVA_HOME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:JAVA_HOME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:JAVA_HOME"
},
"data": null
},
{
"label": "env:LOCALAPPDATA",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:LOCALAPPDATA",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:LOCALAPPDATA"
},
"data": null
},
{
"label": "env:LOGONSERVER",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:LOGONSERVER",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:LOGONSERVER"
},
"data": null
},
{
"label": "env:NUMBER_OF_PROCESSORS",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:NUMBER_OF_PROCESSORS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:NUMBER_OF_PROCESSORS"
},
"data": null
},
{
"label": "env:OS",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:OS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:OS"
},
"data": null
},
{
"label": "env:Path",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:Path",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:Path"
},
"data": null
},
{
"label": "env:PATHEXT",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PATHEXT",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PATHEXT"
},
"data": null
},
{
"label": "env:PIPE_LOGGING",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PIPE_LOGGING",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PIPE_LOGGING"
},
"data": null
},
{
"label": "env:PROCESSOR_ARCHITECTURE",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PROCESSOR_ARCHITECTURE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PROCESSOR_ARCHITECTURE"
},
"data": null
},
{
"label": "env:PROCESSOR_IDENTIFIER",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PROCESSOR_IDENTIFIER",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PROCESSOR_IDENTIFIER"
},
"data": null
},
{
"label": "env:PROCESSOR_LEVEL",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PROCESSOR_LEVEL",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PROCESSOR_LEVEL"
},
"data": null
},
{
"label": "env:PROCESSOR_REVISION",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PROCESSOR_REVISION",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PROCESSOR_REVISION"
},
"data": null
},
{
"label": "env:ProgramData",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ProgramData",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ProgramData"
},
"data": null
},
{
"label": "env:ProgramFiles",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ProgramFiles",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ProgramFiles"
},
"data": null
},
{
"label": "env:ProgramFiles(x86)",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "${env:ProgramFiles(x86)}",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "${env:ProgramFiles(x86)}"
},
"data": null
},
{
"label": "env:ProgramW6432",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ProgramW6432",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ProgramW6432"
},
"data": null
},
{
"label": "env:PSModulePath",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PSModulePath",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PSModulePath"
},
"data": null
},
{
"label": "env:PUBLIC",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PUBLIC",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PUBLIC"
},
"data": null
},
{
"label": "env:SESSIONNAME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:SESSIONNAME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:SESSIONNAME"
},
"data": null
},
{
"label": "env:SystemDrive",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:SystemDrive",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:SystemDrive"
},
"data": null
},
{
"label": "env:SystemRoot",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:SystemRoot",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:SystemRoot"
},
"data": null
},
{
"label": "env:TEMP",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:TEMP",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:TEMP"
},
"data": null
},
{
"label": "env:TMP",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:TMP",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:TMP"
},
"data": null
},
{
"label": "env:TVT",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:TVT",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:TVT"
},
"data": null
},
{
"label": "env:USERDNSDOMAIN",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:USERDNSDOMAIN",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:USERDNSDOMAIN"
},
"data": null
},
{
"label": "env:USERDOMAIN",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:USERDOMAIN",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:USERDOMAIN"
},
"data": null
},
{
"label": "env:USERDOMAIN_ROAMINGPROFILE",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:USERDOMAIN_ROAMINGPROFILE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:USERDOMAIN_ROAMINGPROFILE"
},
"data": null
},
{
"label": "env:USERNAME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:USERNAME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:USERNAME"
},
"data": null
},
{
"label": "env:USERPROFILE",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:USERPROFILE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:USERPROFILE"
},
"data": null
},
{
"label": "env:VBOX_MSI_INSTALL_PATH",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VBOX_MSI_INSTALL_PATH",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VBOX_MSI_INSTALL_PATH"
},
"data": null
},
{
"label": "env:VERBOSE_LOGGING",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VERBOSE_LOGGING",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VERBOSE_LOGGING"
},
"data": null
},
{
"label": "env:VS110COMNTOOLS",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VS110COMNTOOLS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VS110COMNTOOLS"
},
"data": null
},
{
"label": "env:VS120COMNTOOLS",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VS120COMNTOOLS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VS120COMNTOOLS"
},
"data": null
},
{
"label": "env:VS140COMNTOOLS",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VS140COMNTOOLS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VS140COMNTOOLS"
},
"data": null
},
{
"label": "env:VSCODE_CWD",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSCODE_CWD",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSCODE_CWD"
},
"data": null
},
{
"label": "env:VSCODE_IPC_HOOK",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSCODE_IPC_HOOK",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSCODE_IPC_HOOK"
},
"data": null
},
{
"label": "env:VSCODE_NLS_CONFIG",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSCODE_NLS_CONFIG",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSCODE_NLS_CONFIG"
},
"data": null
},
{
"label": "env:VSCODE_PID",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSCODE_PID",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSCODE_PID"
},
"data": null
},
{
"label": "env:VSCODE_SHARED_IPC_HOOK",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSCODE_SHARED_IPC_HOOK",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSCODE_SHARED_IPC_HOOK"
},
"data": null
},
{
"label": "env:VSCODE_TSJS",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSCODE_TSJS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSCODE_TSJS"
},
"data": null
},
{
"label": "env:VSSDK140Install",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSSDK140Install",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSSDK140Install"
},
"data": null
},
{
"label": "env:WALLABY_PRODUCTION",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:WALLABY_PRODUCTION",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:WALLABY_PRODUCTION"
},
"data": null
},
{
"label": "env:windir",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:windir",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:windir"
},
"data": null
},
{
"label": "_",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$_",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$_"
},
"data": null
},
{
"label": "args",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$args",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$args"
},
"data": null
},
{
"label": "CurrentlyExecutingCommand",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$CurrentlyExecutingCommand",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$CurrentlyExecutingCommand"
},
"data": null
},
{
"label": "foreach",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$foreach",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$foreach"
},
"data": null
},
{
"label": "LASTEXITCODE",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LASTEXITCODE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LASTEXITCODE"
},
"data": null
},
{
"label": "LogCommandHealthEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogCommandHealthEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogCommandHealthEvent"
},
"data": null
},
{
"label": "LogCommandLifecycleEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogCommandLifecycleEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogCommandLifecycleEvent"
},
"data": null
},
{
"label": "LogEngineHealthEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogEngineHealthEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogEngineHealthEvent"
},
"data": null
},
{
"label": "LogEngineLifecycleEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogEngineLifecycleEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogEngineLifecycleEvent"
},
"data": null
},
{
"label": "LogProviderHealthEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogProviderHealthEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogProviderHealthEvent"
},
"data": null
},
{
"label": "LogProviderLifecycleEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogProviderLifecycleEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogProviderLifecycleEvent"
},
"data": null
},
{
"label": "LogSettingsEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogSettingsEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogSettingsEvent"
},
"data": null
},
{
"label": "Matches",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Matches",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Matches"
},
"data": null
},
{
"label": "OFS",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$OFS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$OFS"
},
"data": null
},
{
"label": "PSDebugContext",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSDebugContext",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSDebugContext"
},
"data": null
},
{
"label": "PSItem",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSItem",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSItem"
},
"data": null
},
{
"label": "PSLogUserData",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSLogUserData",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSLogUserData"
},
"data": null
},
{
"label": "PSModuleAutoLoadingPreference",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSModuleAutoLoadingPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSModuleAutoLoadingPreference"
},
"data": null
},
{
"label": "switch",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$switch",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$switch"
},
"data": null
},
{
"label": "this",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$this",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$this"
},
"data": null
},
{
"label": "VerboseHelpErrors",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$VerboseHelpErrors",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$VerboseHelpErrors"
},
"data": null
},
{
"label": "Alias",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Alias:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Alias:"
},
"data": null
},
{
"label": "Cert",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Cert:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Cert:"
},
"data": null
},
{
"label": "Env",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Env:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Env:"
},
"data": null
},
{
"label": "Function",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Function:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Function:"
},
"data": null
},
{
"label": "HKCU",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$HKCU:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$HKCU:"
},
"data": null
},
{
"label": "HKLM",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$HKLM:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$HKLM:"
},
"data": null
},
{
"label": "Variable",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Variable:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Variable:"
},
"data": null
},
{
"label": "WSMan",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$WSMan:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$WSMan:"
},
"data": null
},
{
"label": "Global:",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Global:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Global:"
},
"data": null
},
{
"label": "Local:",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Local:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Local:"
},
"data": null
},
{
"label": "Script:",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Script:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Script:"
},
"data": null
},
{
"label": "Private:",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Private:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Private:"
},
"data": null
}
]
}
8/6/2016 12:19:07 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"id": 7,
"method": "completionItem/resolve",
"params": {
"label": "$",
"detail": null,
"documentation": null,
"filterText": null,
"insertText": "${$}",
"kind": 6,
"sortText": null,
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "${$}"
},
"data": null
}
}
8/6/2016 12:19:07 PM [VERBOSE] - Method "WriteMessage" at line 58 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageWriter.cs
WRITE MESSAGE:
{
"jsonrpc": "2.0",
"id": "7",
"result": {
"label": "$",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "${$}",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "${$}"
},
"data": null
}
}
8/6/2016 12:19:08 PM [VERBOSE] - Method "DelayThenInvokeDiagnostics" at line 1013 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\Server\LanguageServer.cs
Analyzing script file: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:08 PM [VERBOSE] - Method "DelayThenInvokeDiagnostics" at line 1019 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\Server\LanguageServer.cs
Analysis complete.
8/6/2016 12:19:08 PM [VERBOSE] - Method "WriteMessage" at line 58 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageWriter.cs
WRITE MESSAGE:
{
"jsonrpc": "2.0",
"method": "textDocument/publishDiagnostics",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"diagnostics": []
}
}
8/6/2016 12:19:13 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"method": "textDocument/didChange",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"contentChanges": [
{
"range": {
"start": {
"line": 5,
"character": 7
},
"end": {
"line": 5,
"character": 7
}
},
"rangeLength": 0,
"text": "m"
}
]
}
}
8/6/2016 12:19:13 PM [VERBOSE] - Method "ResolveFilePath" at line 248 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Workspace\Workspace.cs
Resolved path: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:14 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"method": "textDocument/didChange",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"contentChanges": [
{
"range": {
"start": {
"line": 5,
"character": 8
},
"end": {
"line": 5,
"character": 8
}
},
"rangeLength": 0,
"text": "."
}
]
}
}
8/6/2016 12:19:14 PM [VERBOSE] - Method "ResolveFilePath" at line 248 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Workspace\Workspace.cs
Resolved path: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:14 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"id": 8,
"method": "textDocument/completion",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"position": {
"line": 5,
"character": 9
}
}
}
8/6/2016 12:19:14 PM [VERBOSE] - Method "ResolveFilePath" at line 248 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Workspace\Workspace.cs
Resolved path: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:14 PM [VERBOSE] - Method "WriteMessage" at line 58 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageWriter.cs
WRITE MESSAGE:
{
"jsonrpc": "2.0",
"id": "8",
"result": [
{
"label": "CompareTo",
"kind": 2,
"detail": null,
"documentation": "int CompareTo(System.Object value)\nint CompareTo(int value)\nint IComparable.CompareTo(System.Object obj)\nint IComparable[int].CompareTo(int other)",
"sortText": null,
"filterText": null,
"insertText": "CompareTo(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "CompareTo("
},
"data": null
},
{
"label": "Equals",
"kind": 2,
"detail": null,
"documentation": "bool Equals(System.Object obj)\nbool Equals(int obj)\nbool IEquatable[int].Equals(int other)",
"sortText": null,
"filterText": null,
"insertText": "Equals(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "Equals("
},
"data": null
},
{
"label": "GetHashCode",
"kind": 2,
"detail": null,
"documentation": "int GetHashCode()",
"sortText": null,
"filterText": null,
"insertText": "GetHashCode(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "GetHashCode("
},
"data": null
},
{
"label": "GetType",
"kind": 2,
"detail": null,
"documentation": "type GetType()",
"sortText": null,
"filterText": null,
"insertText": "GetType(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "GetType("
},
"data": null
},
{
"label": "GetTypeCode",
"kind": 2,
"detail": null,
"documentation": "System.TypeCode GetTypeCode()\nSystem.TypeCode IConvertible.GetTypeCode()",
"sortText": null,
"filterText": null,
"insertText": "GetTypeCode(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "GetTypeCode("
},
"data": null
},
{
"label": "ToBoolean",
"kind": 2,
"detail": null,
"documentation": "bool IConvertible.ToBoolean(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToBoolean(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToBoolean("
},
"data": null
},
{
"label": "ToByte",
"kind": 2,
"detail": null,
"documentation": "byte IConvertible.ToByte(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToByte(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToByte("
},
"data": null
},
{
"label": "ToChar",
"kind": 2,
"detail": null,
"documentation": "char IConvertible.ToChar(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToChar(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToChar("
},
"data": null
},
{
"label": "ToDateTime",
"kind": 2,
"detail": null,
"documentation": "datetime IConvertible.ToDateTime(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToDateTime(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToDateTime("
},
"data": null
},
{
"label": "ToDecimal",
"kind": 2,
"detail": null,
"documentation": "decimal IConvertible.ToDecimal(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToDecimal(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToDecimal("
},
"data": null
},
{
"label": "ToDouble",
"kind": 2,
"detail": null,
"documentation": "double IConvertible.ToDouble(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToDouble(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToDouble("
},
"data": null
},
{
"label": "ToInt16",
"kind": 2,
"detail": null,
"documentation": "int16 IConvertible.ToInt16(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToInt16(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToInt16("
},
"data": null
},
{
"label": "ToInt32",
"kind": 2,
"detail": null,
"documentation": "int IConvertible.ToInt32(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToInt32(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToInt32("
},
"data": null
},
{
"label": "ToInt64",
"kind": 2,
"detail": null,
"documentation": "long IConvertible.ToInt64(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToInt64(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToInt64("
},
"data": null
},
{
"label": "ToSByte",
"kind": 2,
"detail": null,
"documentation": "sbyte IConvertible.ToSByte(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToSByte(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToSByte("
},
"data": null
},
{
"label": "ToSingle",
"kind": 2,
"detail": null,
"documentation": "float IConvertible.ToSingle(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToSingle(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToSingle("
},
"data": null
},
{
"label": "ToString",
"kind": 2,
"detail": null,
"documentation": "string ToString()\nstring ToString(string format)\nstring ToString(System.IFormatProvider provider)\nstring ToString(string format, System.IFormatProvider provider)\nstring IFormattable.ToString(string format, System.IFormatProvider formatProvider)\nstring IConvertible.ToString(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToString(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToString("
},
"data": null
},
{
"label": "ToType",
"kind": 2,
"detail": null,
"documentation": "System.Object IConvertible.ToType(type conversionType, System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToType(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToType("
},
"data": null
},
{
"label": "ToUInt16",
"kind": 2,
"detail": null,
"documentation": "uint16 IConvertible.ToUInt16(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToUInt16(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToUInt16("
},
"data": null
},
{
"label": "ToUInt32",
"kind": 2,
"detail": null,
"documentation": "uint32 IConvertible.ToUInt32(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToUInt32(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToUInt32("
},
"data": null
},
{
"label": "ToUInt64",
"kind": 2,
"detail": null,
"documentation": "uint64 IConvertible.ToUInt64(System.IFormatProvider provider)",
"sortText": null,
"filterText": null,
"insertText": "ToUInt64(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "ToUInt64("
},
"data": null
}
]
}
8/6/2016 12:19:14 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"id": 9,
"method": "completionItem/resolve",
"params": {
"label": "CompareTo",
"detail": null,
"documentation": "int CompareTo(System.Object value)\nint CompareTo(int value)\nint IComparable.CompareTo(System.Object obj)\nint IComparable[int].CompareTo(int other)",
"filterText": null,
"insertText": "CompareTo(",
"kind": 2,
"sortText": null,
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "CompareTo("
},
"data": null
}
}
8/6/2016 12:19:14 PM [VERBOSE] - Method "WriteMessage" at line 58 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageWriter.cs
WRITE MESSAGE:
{
"jsonrpc": "2.0",
"id": "9",
"result": {
"label": "CompareTo",
"kind": 2,
"detail": null,
"documentation": "int CompareTo(System.Object value)\nint CompareTo(int value)\nint IComparable.CompareTo(System.Object obj)\nint IComparable[int].CompareTo(int other)",
"sortText": null,
"filterText": null,
"insertText": "CompareTo(",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 9
},
"end": {
"line": 5,
"character": 9
}
},
"newText": "CompareTo("
},
"data": null
}
}
8/6/2016 12:19:14 PM [VERBOSE] - Method "DelayThenInvokeDiagnostics" at line 1013 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\Server\LanguageServer.cs
Analyzing script file: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:14 PM [VERBOSE] - Method "DelayThenInvokeDiagnostics" at line 1019 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\Server\LanguageServer.cs
Analysis complete.
8/6/2016 12:19:14 PM [VERBOSE] - Method "WriteMessage" at line 58 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageWriter.cs
WRITE MESSAGE:
{
"jsonrpc": "2.0",
"method": "textDocument/publishDiagnostics",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"diagnostics": []
}
}
8/6/2016 12:19:15 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"method": "textDocument/didChange",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"contentChanges": [
{
"range": {
"start": {
"line": 5,
"character": 8
},
"end": {
"line": 5,
"character": 9
}
},
"rangeLength": 1,
"text": ""
}
]
}
}
8/6/2016 12:19:15 PM [VERBOSE] - Method "ResolveFilePath" at line 248 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Workspace\Workspace.cs
Resolved path: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:15 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"method": "textDocument/didChange",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"contentChanges": [
{
"range": {
"start": {
"line": 5,
"character": 7
},
"end": {
"line": 5,
"character": 8
}
},
"rangeLength": 1,
"text": ""
}
]
}
}
8/6/2016 12:19:15 PM [VERBOSE] - Method "ResolveFilePath" at line 248 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Workspace\Workspace.cs
Resolved path: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:15 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"id": 10,
"method": "textDocument/completion",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"position": {
"line": 5,
"character": 7
}
}
}
8/6/2016 12:19:15 PM [VERBOSE] - Method "ResolveFilePath" at line 248 of C:\projects\powershelleditorservices\src\PowerShellEditorServices\Workspace\Workspace.cs
Resolved path: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:15 PM [VERBOSE] - Method "WriteMessage" at line 58 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageWriter.cs
WRITE MESSAGE:
{
"jsonrpc": "2.0",
"id": "10",
"result": [
{
"label": "rawUI",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$rawUI",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$rawUI"
},
"data": null
},
{
"label": "m",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$m",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$m"
},
"data": null
},
{
"label": "$",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "${$}",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "${$}"
},
"data": null
},
{
"label": "?",
"kind": 6,
"detail": "[bool]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$?",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$?"
},
"data": null
},
{
"label": "^",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "${^}",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "${^}"
},
"data": null
},
{
"label": "ast",
"kind": 6,
"detail": "[ScriptBlockAst]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ast",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ast"
},
"data": null
},
{
"label": "ConfirmPreference",
"kind": 6,
"detail": "[ConfirmImpact]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ConfirmPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ConfirmPreference"
},
"data": null
},
{
"label": "ConsoleFileName",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ConsoleFileName",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ConsoleFileName"
},
"data": null
},
{
"label": "cursorColumn",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$cursorColumn",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$cursorColumn"
},
"data": null
},
{
"label": "DebugPreference",
"kind": 6,
"detail": "[ActionPreference]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$DebugPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$DebugPreference"
},
"data": null
},
{
"label": "Error",
"kind": 6,
"detail": "[ArrayList]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Error",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Error"
},
"data": null
},
{
"label": "ErrorActionPreference",
"kind": 6,
"detail": "[ActionPreference]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ErrorActionPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ErrorActionPreference"
},
"data": null
},
{
"label": "ErrorView",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ErrorView",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ErrorView"
},
"data": null
},
{
"label": "ExecutionContext",
"kind": 6,
"detail": "[EngineIntrinsics]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ExecutionContext",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ExecutionContext"
},
"data": null
},
{
"label": "false",
"kind": 6,
"detail": "[bool]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$false",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$false"
},
"data": null
},
{
"label": "FormatEnumerationLimit",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$FormatEnumerationLimit",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$FormatEnumerationLimit"
},
"data": null
},
{
"label": "HOME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$HOME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$HOME"
},
"data": null
},
{
"label": "Host",
"kind": 6,
"detail": "[InternalHost]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Host",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Host"
},
"data": null
},
{
"label": "InformationPreference",
"kind": 6,
"detail": "[ActionPreference]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$InformationPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$InformationPreference"
},
"data": null
},
{
"label": "input",
"kind": 6,
"detail": "[Object[]]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$input",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$input"
},
"data": null
},
{
"label": "inputScript",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$inputScript",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$inputScript"
},
"data": null
},
{
"label": "MaximumAliasCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumAliasCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MaximumAliasCount"
},
"data": null
},
{
"label": "MaximumDriveCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumDriveCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MaximumDriveCount"
},
"data": null
},
{
"label": "MaximumErrorCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumErrorCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MaximumErrorCount"
},
"data": null
},
{
"label": "MaximumFunctionCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumFunctionCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MaximumFunctionCount"
},
"data": null
},
{
"label": "MaximumHistoryCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumHistoryCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MaximumHistoryCount"
},
"data": null
},
{
"label": "MaximumVariableCount",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MaximumVariableCount",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MaximumVariableCount"
},
"data": null
},
{
"label": "MyInvocation",
"kind": 6,
"detail": "[InvocationInfo]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$MyInvocation",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$MyInvocation"
},
"data": null
},
{
"label": "NestedPromptLevel",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$NestedPromptLevel",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$NestedPromptLevel"
},
"data": null
},
{
"label": "null",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$null",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$null"
},
"data": null
},
{
"label": "options",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$options",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$options"
},
"data": null
},
{
"label": "OutputEncoding",
"kind": 6,
"detail": "[ASCIIEncoding]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$OutputEncoding",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$OutputEncoding"
},
"data": null
},
{
"label": "PID",
"kind": 6,
"detail": "[int]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PID",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PID"
},
"data": null
},
{
"label": "positionOfCursor",
"kind": 6,
"detail": "[InternalScriptPosition]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$positionOfCursor",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$positionOfCursor"
},
"data": null
},
{
"label": "profile",
"kind": 6,
"detail": "[psobject]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$profile",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$profile"
},
"data": null
},
{
"label": "ProgressPreference",
"kind": 6,
"detail": "[ActionPreference]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ProgressPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ProgressPreference"
},
"data": null
},
{
"label": "PSBoundParameters",
"kind": 6,
"detail": "[PSBoundParametersDictionary]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSBoundParameters",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSBoundParameters"
},
"data": null
},
{
"label": "PSCmdlet",
"kind": 6,
"detail": "[PSScriptCmdlet]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSCmdlet",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSCmdlet"
},
"data": null
},
{
"label": "PSCommandPath",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSCommandPath",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSCommandPath"
},
"data": null
},
{
"label": "PSCulture",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSCulture",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSCulture"
},
"data": null
},
{
"label": "PSDefaultParameterValues",
"kind": 6,
"detail": "[DefaultParameterDictionary]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSDefaultParameterValues",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSDefaultParameterValues"
},
"data": null
},
{
"label": "psEditor",
"kind": 6,
"detail": "[EditorObject]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$psEditor",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$psEditor"
},
"data": null
},
{
"label": "PSEmailServer",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSEmailServer",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSEmailServer"
},
"data": null
},
{
"label": "PSHOME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSHOME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSHOME"
},
"data": null
},
{
"label": "PSScriptRoot",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSScriptRoot",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSScriptRoot"
},
"data": null
},
{
"label": "PSSessionApplicationName",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSSessionApplicationName",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSSessionApplicationName"
},
"data": null
},
{
"label": "PSSessionConfigurationName",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSSessionConfigurationName",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSSessionConfigurationName"
},
"data": null
},
{
"label": "PSSessionOption",
"kind": 6,
"detail": "[PSSessionOption]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSSessionOption",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSSessionOption"
},
"data": null
},
{
"label": "PSUICulture",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSUICulture",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSUICulture"
},
"data": null
},
{
"label": "PSVersionTable",
"kind": 6,
"detail": "[hashtable]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSVersionTable",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSVersionTable"
},
"data": null
},
{
"label": "PWD",
"kind": 6,
"detail": "[PathInfo]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PWD",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PWD"
},
"data": null
},
{
"label": "ShellId",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$ShellId",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$ShellId"
},
"data": null
},
{
"label": "StackTrace",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$StackTrace",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$StackTrace"
},
"data": null
},
{
"label": "tokens",
"kind": 6,
"detail": "[Token[]]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$tokens",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$tokens"
},
"data": null
},
{
"label": "true",
"kind": 6,
"detail": "[bool]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$true",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$true"
},
"data": null
},
{
"label": "VerbosePreference",
"kind": 6,
"detail": "[ActionPreference]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$VerbosePreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$VerbosePreference"
},
"data": null
},
{
"label": "WarningPreference",
"kind": 6,
"detail": "[ActionPreference]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$WarningPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$WarningPreference"
},
"data": null
},
{
"label": "WhatIfPreference",
"kind": 6,
"detail": "[bool]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$WhatIfPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$WhatIfPreference"
},
"data": null
},
{
"label": "env:ALLUSERSPROFILE",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ALLUSERSPROFILE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ALLUSERSPROFILE"
},
"data": null
},
{
"label": "env:AMD_ENTRYPOINT",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:AMD_ENTRYPOINT",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:AMD_ENTRYPOINT"
},
"data": null
},
{
"label": "env:ANDROID_HOME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ANDROID_HOME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ANDROID_HOME"
},
"data": null
},
{
"label": "env:ANDROID_NDK_PATH",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ANDROID_NDK_PATH",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ANDROID_NDK_PATH"
},
"data": null
},
{
"label": "env:APPDATA",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:APPDATA",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:APPDATA"
},
"data": null
},
{
"label": "env:ATOM_SHELL_INTERNAL_RUN_AS_NODE",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ATOM_SHELL_INTERNAL_RUN_AS_NODE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ATOM_SHELL_INTERNAL_RUN_AS_NODE"
},
"data": null
},
{
"label": "env:ChocolateyInstall",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ChocolateyInstall",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ChocolateyInstall"
},
"data": null
},
{
"label": "env:ChocolateyLastPathUpdate",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ChocolateyLastPathUpdate",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ChocolateyLastPathUpdate"
},
"data": null
},
{
"label": "env:ChocolateyToolsLocation",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ChocolateyToolsLocation",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ChocolateyToolsLocation"
},
"data": null
},
{
"label": "env:CLASSPATH",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:CLASSPATH",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:CLASSPATH"
},
"data": null
},
{
"label": "env:CommonProgramFiles",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:CommonProgramFiles",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:CommonProgramFiles"
},
"data": null
},
{
"label": "env:CommonProgramFiles(x86)",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "${env:CommonProgramFiles(x86)}",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "${env:CommonProgramFiles(x86)}"
},
"data": null
},
{
"label": "env:CommonProgramW6432",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:CommonProgramW6432",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:CommonProgramW6432"
},
"data": null
},
{
"label": "env:COMPUTERNAME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:COMPUTERNAME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:COMPUTERNAME"
},
"data": null
},
{
"label": "env:ComSpec",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ComSpec",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ComSpec"
},
"data": null
},
{
"label": "env:DOCKER_TOOLBOX_INSTALL_PATH",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:DOCKER_TOOLBOX_INSTALL_PATH",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:DOCKER_TOOLBOX_INSTALL_PATH"
},
"data": null
},
{
"label": "env:DOTNET_CLI_TELEMETRY_OPTOUT",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:DOTNET_CLI_TELEMETRY_OPTOUT",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:DOTNET_CLI_TELEMETRY_OPTOUT"
},
"data": null
},
{
"label": "env:GOOGLE_API_KEY",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:GOOGLE_API_KEY",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:GOOGLE_API_KEY"
},
"data": null
},
{
"label": "env:GOPATH",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:GOPATH",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:GOPATH"
},
"data": null
},
{
"label": "env:GOROOT",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:GOROOT",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:GOROOT"
},
"data": null
},
{
"label": "env:HOMEDRIVE",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:HOMEDRIVE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:HOMEDRIVE"
},
"data": null
},
{
"label": "env:HOMEPATH",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:HOMEPATH",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:HOMEPATH"
},
"data": null
},
{
"label": "env:JAVA_HOME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:JAVA_HOME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:JAVA_HOME"
},
"data": null
},
{
"label": "env:LOCALAPPDATA",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:LOCALAPPDATA",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:LOCALAPPDATA"
},
"data": null
},
{
"label": "env:LOGONSERVER",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:LOGONSERVER",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:LOGONSERVER"
},
"data": null
},
{
"label": "env:NUMBER_OF_PROCESSORS",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:NUMBER_OF_PROCESSORS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:NUMBER_OF_PROCESSORS"
},
"data": null
},
{
"label": "env:OS",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:OS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:OS"
},
"data": null
},
{
"label": "env:Path",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:Path",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:Path"
},
"data": null
},
{
"label": "env:PATHEXT",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PATHEXT",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PATHEXT"
},
"data": null
},
{
"label": "env:PIPE_LOGGING",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PIPE_LOGGING",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PIPE_LOGGING"
},
"data": null
},
{
"label": "env:PROCESSOR_ARCHITECTURE",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PROCESSOR_ARCHITECTURE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PROCESSOR_ARCHITECTURE"
},
"data": null
},
{
"label": "env:PROCESSOR_IDENTIFIER",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PROCESSOR_IDENTIFIER",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PROCESSOR_IDENTIFIER"
},
"data": null
},
{
"label": "env:PROCESSOR_LEVEL",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PROCESSOR_LEVEL",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PROCESSOR_LEVEL"
},
"data": null
},
{
"label": "env:PROCESSOR_REVISION",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PROCESSOR_REVISION",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PROCESSOR_REVISION"
},
"data": null
},
{
"label": "env:ProgramData",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ProgramData",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ProgramData"
},
"data": null
},
{
"label": "env:ProgramFiles",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ProgramFiles",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ProgramFiles"
},
"data": null
},
{
"label": "env:ProgramFiles(x86)",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "${env:ProgramFiles(x86)}",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "${env:ProgramFiles(x86)}"
},
"data": null
},
{
"label": "env:ProgramW6432",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:ProgramW6432",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:ProgramW6432"
},
"data": null
},
{
"label": "env:PSModulePath",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PSModulePath",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PSModulePath"
},
"data": null
},
{
"label": "env:PUBLIC",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:PUBLIC",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:PUBLIC"
},
"data": null
},
{
"label": "env:SESSIONNAME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:SESSIONNAME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:SESSIONNAME"
},
"data": null
},
{
"label": "env:SystemDrive",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:SystemDrive",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:SystemDrive"
},
"data": null
},
{
"label": "env:SystemRoot",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:SystemRoot",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:SystemRoot"
},
"data": null
},
{
"label": "env:TEMP",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:TEMP",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:TEMP"
},
"data": null
},
{
"label": "env:TMP",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:TMP",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:TMP"
},
"data": null
},
{
"label": "env:TVT",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:TVT",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:TVT"
},
"data": null
},
{
"label": "env:USERDNSDOMAIN",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:USERDNSDOMAIN",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:USERDNSDOMAIN"
},
"data": null
},
{
"label": "env:USERDOMAIN",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:USERDOMAIN",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:USERDOMAIN"
},
"data": null
},
{
"label": "env:USERDOMAIN_ROAMINGPROFILE",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:USERDOMAIN_ROAMINGPROFILE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:USERDOMAIN_ROAMINGPROFILE"
},
"data": null
},
{
"label": "env:USERNAME",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:USERNAME",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:USERNAME"
},
"data": null
},
{
"label": "env:USERPROFILE",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:USERPROFILE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:USERPROFILE"
},
"data": null
},
{
"label": "env:VBOX_MSI_INSTALL_PATH",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VBOX_MSI_INSTALL_PATH",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VBOX_MSI_INSTALL_PATH"
},
"data": null
},
{
"label": "env:VERBOSE_LOGGING",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VERBOSE_LOGGING",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VERBOSE_LOGGING"
},
"data": null
},
{
"label": "env:VS110COMNTOOLS",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VS110COMNTOOLS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VS110COMNTOOLS"
},
"data": null
},
{
"label": "env:VS120COMNTOOLS",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VS120COMNTOOLS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VS120COMNTOOLS"
},
"data": null
},
{
"label": "env:VS140COMNTOOLS",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VS140COMNTOOLS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VS140COMNTOOLS"
},
"data": null
},
{
"label": "env:VSCODE_CWD",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSCODE_CWD",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSCODE_CWD"
},
"data": null
},
{
"label": "env:VSCODE_IPC_HOOK",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSCODE_IPC_HOOK",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSCODE_IPC_HOOK"
},
"data": null
},
{
"label": "env:VSCODE_NLS_CONFIG",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSCODE_NLS_CONFIG",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSCODE_NLS_CONFIG"
},
"data": null
},
{
"label": "env:VSCODE_PID",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSCODE_PID",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSCODE_PID"
},
"data": null
},
{
"label": "env:VSCODE_SHARED_IPC_HOOK",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSCODE_SHARED_IPC_HOOK",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSCODE_SHARED_IPC_HOOK"
},
"data": null
},
{
"label": "env:VSCODE_TSJS",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSCODE_TSJS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSCODE_TSJS"
},
"data": null
},
{
"label": "env:VSSDK140Install",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:VSSDK140Install",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:VSSDK140Install"
},
"data": null
},
{
"label": "env:WALLABY_PRODUCTION",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:WALLABY_PRODUCTION",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:WALLABY_PRODUCTION"
},
"data": null
},
{
"label": "env:windir",
"kind": 6,
"detail": "[string]",
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$env:windir",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$env:windir"
},
"data": null
},
{
"label": "_",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$_",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$_"
},
"data": null
},
{
"label": "args",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$args",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$args"
},
"data": null
},
{
"label": "CurrentlyExecutingCommand",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$CurrentlyExecutingCommand",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$CurrentlyExecutingCommand"
},
"data": null
},
{
"label": "foreach",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$foreach",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$foreach"
},
"data": null
},
{
"label": "LASTEXITCODE",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LASTEXITCODE",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LASTEXITCODE"
},
"data": null
},
{
"label": "LogCommandHealthEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogCommandHealthEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogCommandHealthEvent"
},
"data": null
},
{
"label": "LogCommandLifecycleEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogCommandLifecycleEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogCommandLifecycleEvent"
},
"data": null
},
{
"label": "LogEngineHealthEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogEngineHealthEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogEngineHealthEvent"
},
"data": null
},
{
"label": "LogEngineLifecycleEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogEngineLifecycleEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogEngineLifecycleEvent"
},
"data": null
},
{
"label": "LogProviderHealthEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogProviderHealthEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogProviderHealthEvent"
},
"data": null
},
{
"label": "LogProviderLifecycleEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogProviderLifecycleEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogProviderLifecycleEvent"
},
"data": null
},
{
"label": "LogSettingsEvent",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$LogSettingsEvent",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$LogSettingsEvent"
},
"data": null
},
{
"label": "Matches",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Matches",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Matches"
},
"data": null
},
{
"label": "OFS",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$OFS",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$OFS"
},
"data": null
},
{
"label": "PSDebugContext",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSDebugContext",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSDebugContext"
},
"data": null
},
{
"label": "PSItem",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSItem",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSItem"
},
"data": null
},
{
"label": "PSLogUserData",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSLogUserData",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSLogUserData"
},
"data": null
},
{
"label": "PSModuleAutoLoadingPreference",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$PSModuleAutoLoadingPreference",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$PSModuleAutoLoadingPreference"
},
"data": null
},
{
"label": "switch",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$switch",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$switch"
},
"data": null
},
{
"label": "this",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$this",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$this"
},
"data": null
},
{
"label": "VerboseHelpErrors",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$VerboseHelpErrors",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$VerboseHelpErrors"
},
"data": null
},
{
"label": "Alias",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Alias:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Alias:"
},
"data": null
},
{
"label": "Cert",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Cert:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Cert:"
},
"data": null
},
{
"label": "Env",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Env:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Env:"
},
"data": null
},
{
"label": "Function",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Function:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Function:"
},
"data": null
},
{
"label": "HKCU",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$HKCU:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$HKCU:"
},
"data": null
},
{
"label": "HKLM",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$HKLM:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$HKLM:"
},
"data": null
},
{
"label": "Variable",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Variable:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Variable:"
},
"data": null
},
{
"label": "WSMan",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$WSMan:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$WSMan:"
},
"data": null
},
{
"label": "Global:",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Global:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Global:"
},
"data": null
},
{
"label": "Local:",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Local:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Local:"
},
"data": null
},
{
"label": "Script:",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Script:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Script:"
},
"data": null
},
{
"label": "Private:",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "$Private:",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "$Private:"
},
"data": null
}
]
}
8/6/2016 12:19:15 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"id": 11,
"method": "completionItem/resolve",
"params": {
"label": "$",
"detail": null,
"documentation": null,
"filterText": null,
"insertText": "${$}",
"kind": 6,
"sortText": null,
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "${$}"
},
"data": null
}
}
8/6/2016 12:19:15 PM [VERBOSE] - Method "WriteMessage" at line 58 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageWriter.cs
WRITE MESSAGE:
{
"jsonrpc": "2.0",
"id": "11",
"result": {
"label": "$",
"kind": 6,
"detail": null,
"documentation": null,
"sortText": null,
"filterText": null,
"insertText": "${$}",
"textEdit": {
"range": {
"start": {
"line": 5,
"character": 6
},
"end": {
"line": 5,
"character": 7
}
},
"newText": "${$}"
},
"data": null
}
}
8/6/2016 12:19:15 PM [VERBOSE] - Method "DelayThenInvokeDiagnostics" at line 1013 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\Server\LanguageServer.cs
Analyzing script file: c:\Users\user\AppData\Local\Temp\test.ps1
8/6/2016 12:19:15 PM [VERBOSE] - Method "DelayThenInvokeDiagnostics" at line 1019 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\Server\LanguageServer.cs
Analysis complete.
8/6/2016 12:19:15 PM [VERBOSE] - Method "WriteMessage" at line 58 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageWriter.cs
WRITE MESSAGE:
{
"jsonrpc": "2.0",
"method": "textDocument/publishDiagnostics",
"params": {
"uri": "file:///c%3A/Users/user/AppData/Local/Temp/test.ps1",
"diagnostics": []
}
}
8/6/2016 12:19:32 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"id": 12,
"method": "shutdown"
}
8/6/2016 12:19:32 PM [NORMAL] - Method "Shutdown" at line 117 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\Server\LanguageServer.cs
Language service is shutting down...
8/6/2016 12:19:33 PM [VERBOSE] - Method "WriteMessage" at line 58 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageWriter.cs
WRITE MESSAGE:
{
"jsonrpc": "2.0",
"id": "12",
"result": {}
}
8/6/2016 12:19:33 PM [VERBOSE] - Method "ReadMessage" at line 111 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\MessageProtocol\MessageReader.cs
READ MESSAGE:
{
"jsonrpc": "2.0",
"method": "exit"
}
8/6/2016 12:19:33 PM [NORMAL] - Method "Shutdown" at line 117 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Protocol\Server\LanguageServer.cs
Language service is shutting down...
8/6/2016 12:19:33 PM [NORMAL] - Method "Main" at line 170 of C:\projects\powershelleditorservices\src\PowerShellEditorServices.Host\Program.cs
PowerShell Editor Services Host exited normally.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment