-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(GH-9033) Add casing functions for PSReadLine 2.3.0 #9035
(GH-9033) Add casing functions for PSReadLine 2.3.0 #9035
Conversation
The change in PowerShell/PSReadLine#3365 added three new functions for modifying the casing of text with PSReadLine. This change: - Adds an entry for each new function in the "Basic editing functions" section of `about_PSReadLine_Functions.md` - Resolves MicrosoftDocs#9033 - Resolves AB#4387
Docs Build status updates of commit 88771d6: ✅ Validation status: passed
For more details, please refer to the build report. Note: Broken links written as relative paths are included in the above build report. For broken links written as absolute paths or external URLs, see the broken link report. For any questions, please:
|
characters to lower case. | ||
|
||
- Cmd: `<Alt+c>` | ||
- Emacs: `<Escape,c>` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both key bindings are in Emacs mode only.
Convert the next word to lower case. | ||
|
||
- Cmd: `<Alt+l>` | ||
- Emacs: `<Escape,l>` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here, both key bindings are in Emacs mode only.
Convert the next word to upper case. | ||
|
||
- Cmd: `<Alt+u>` | ||
- Emacs: `<Escape,u>` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here.
PR Summary
The change in PowerShell/PSReadLine#3365 added three new functions for modifying the casing of text with PSReadLine. This change:
about_PSReadLine_Functions.md
PR Checklist