forked from PowerShell/PSReadLine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add file for tracking changes in each build
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
### Version 1.0.0.1 | ||
|
||
New features: | ||
* History imported when module is loaded | ||
* Ctrl+End/Ctrl+Home bindings emulate cmd | ||
* Arbitrary two key chords | ||
* Key handlers passed the invoking key and an optional argument | ||
* Made Ding public for custom handlers | ||
|
||
Bugs fixed: | ||
* Alternate keyboards now supported | ||
* Ctrl-C now properly emulates cmd | ||
|
||
Breaking changes: | ||
* MinimumHistoryCommandLength parameter removed from Set-PSReadlineOption | ||
- Can use this instead: | ||
Set-PSReadlineOption -AddToHistoryHandler { $args[0].Length -gt 3 } | ||
|
||
### Version 1.0.0.1 | ||
|
||
Initial release |