File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
src/PowerShellEditorServices.Protocol/Server Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
# PowerShell Editor Services Release History
2
2
3
+ ## 0.6.2
4
+ ### Tuesday, August 9, 2016
5
+
6
+ - Fixed #264 : Variable and parameter IntelliSense broken in VS Code 1.4.0
7
+ - Fixed #240 : Completion item with regex metachars can cause editor host to crash
8
+ - Fixed #232 : Language server sometimes crashes then $ErrorActionPreference = "Stop"
9
+
3
10
## 0.6.1
4
11
### Monday, May 16, 2016
5
12
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ configuration: Release
4
4
clone_depth : 10
5
5
6
6
environment :
7
- core_version : ' 0.6.1 '
7
+ core_version : ' 0.6.2 '
8
8
prerelease_name : ' -beta'
9
9
10
10
branches :
Original file line number Diff line number Diff line change @@ -1164,6 +1164,7 @@ private static CompletionItem CreateCompletionItem(
1164
1164
Detail = detailString ,
1165
1165
Documentation = documentationString ,
1166
1166
SortText = sortText ,
1167
+ FilterText = completionDetails . CompletionText ,
1167
1168
TextEdit = new TextEdit
1168
1169
{
1169
1170
NewText = completionDetails . CompletionText ,
You can’t perform that action at this time.
0 commit comments