You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11-7Lines changed: 11 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@
10
10
- You can now pass arguments to scripts in the debugger with the `args` parameter in launch.json
11
11
- You can also run your script with the 32-bit debugger by changing the `type` parameter in launch.json to "PowerShell x86" (also thanks to [@adamdriscoll](https://github.com/adamdriscoll)!)
12
12
- The new default PowerShell debugger configuration now launches the active file in the editor
13
-
- You can also set the working directory where the script is run by setting the `cwd` parameter in launch.json to an absolute path
13
+
- You can also set the working directory where the script is run by setting the `cwd` parameter in launch.json to an absolute path. If you need a workspace relative path, use ${workspaceRoot} to create an absolute path e.g. `"${workspaceRoot}/modules/foo.psm1"`.
14
14
15
15
We recommend deleting any existing `launch.json` file you're using so that a new one will
16
16
be generated with the new defaults.
@@ -31,15 +31,19 @@ be generated with the new defaults.
31
31
- "Find/Install PowerShell modules from the gallery" (`Ctrl+K Ctrl+F`): Enables you to find and install modules from the PowerShell Gallery (thanks [@dfinke](https://github.com/dfinke)!)
32
32
- "Open current file in PowerShell ISE" (`Ctrl+Shift+i`): Opens the current file in the PowerShell ISE (thanks [@janegilring](https://github.com/janegilring)!)
33
33
34
-
#### New configuration settings
35
-
36
-
-`powershell.developer.editorServicesLogLevel`: configures the logging verbosity for PowerShell Editor Services. The default log level will now write less logs, improving overall performance
37
-
38
-
#### Other improvements
34
+
#### Editor improvements
39
35
36
+
- Path auto-completion lists show just the current directory's contents instead of the full path (which had resulted in clipped text)
37
+
- Parameter auto-completion lists are now sorted in the same order as they are in PowerShell ISE where command-specific parameters preceed the common parameters
38
+
- Parameter auto-completion lists show the parameter type
39
+
- Command auto-completion lists show the resolved command for aliases and the path for executables
40
40
- Many improvements to the PowerShell snippets, more clearly separating functional and example snippets
41
41
- Added some additional example script files in the `examples` folder
42
42
43
+
#### New configuration settings
44
+
45
+
-`powershell.developer.editorServicesLogLevel`: configures the logging verbosity for PowerShell Editor Services. The default log level will now write less logs, improving overall performance
46
+
43
47
## 0.3.1
44
48
### Thursday, December 17, 2015
45
49
@@ -81,4 +85,4 @@ Initial release with the following features:
81
85
- Go to Definition of cmdlets and variables
82
86
- Find References of cmdlets and variables
83
87
- Document and workspace symbol discovery
84
-
- Local script debugging and basic interactive console support
88
+
- Local script debugging and basic interactive console support
0 commit comments