diff --git a/CHANGELOG.md b/CHANGELOG.md index 5865bc998..9482a5649 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # PowerShell Editor Services Release History +## 0.6.2 +### Tuesday, August 9, 2016 + +- Fixed #264: Variable and parameter IntelliSense broken in VS Code 1.4.0 +- Fixed #240: Completion item with regex metachars can cause editor host to crash +- Fixed #232: Language server sometimes crashes then $ErrorActionPreference = "Stop" + ## 0.6.1 ### Monday, May 16, 2016 diff --git a/appveyor.yml b/appveyor.yml index 94bc619f4..859089f1a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,7 +4,7 @@ configuration: Release clone_depth: 10 environment: - core_version: '0.6.1' + core_version: '0.6.2' prerelease_name: '-beta' branches: diff --git a/src/PowerShellEditorServices.Protocol/Server/LanguageServer.cs b/src/PowerShellEditorServices.Protocol/Server/LanguageServer.cs index 97375e34a..980cfc0c0 100644 --- a/src/PowerShellEditorServices.Protocol/Server/LanguageServer.cs +++ b/src/PowerShellEditorServices.Protocol/Server/LanguageServer.cs @@ -1164,6 +1164,7 @@ private static CompletionItem CreateCompletionItem( Detail = detailString, Documentation = documentationString, SortText = sortText, + FilterText = completionDetails.CompletionText, TextEdit = new TextEdit { NewText = completionDetails.CompletionText,