Skip to content

Commit fe4afca

Browse files
committed
Update CHANGELOG.md
Added more info on Editor improvements.
1 parent f79621d commit fe4afca

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- You can now pass arguments to scripts in the debugger with the `args` parameter in launch.json
1111
- 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)!)
1212
- 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"`.
1414

1515
We recommend deleting any existing `launch.json` file you're using so that a new one will
1616
be generated with the new defaults.
@@ -31,15 +31,19 @@ be generated with the new defaults.
3131
- "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)!)
3232
- "Open current file in PowerShell ISE" (`Ctrl+Shift+i`): Opens the current file in the PowerShell ISE (thanks [@janegilring](https://github.com/janegilring)!)
3333

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
3935

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
4040
- Many improvements to the PowerShell snippets, more clearly separating functional and example snippets
4141
- Added some additional example script files in the `examples` folder
4242

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+
4347
## 0.3.1
4448
### Thursday, December 17, 2015
4549

@@ -81,4 +85,4 @@ Initial release with the following features:
8185
- Go to Definition of cmdlets and variables
8286
- Find References of cmdlets and variables
8387
- 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

Comments
 (0)