-
-
Notifications
You must be signed in to change notification settings - Fork 16
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
Tips - "Double Tab completion" and "Drag folder or file to get path #65
Conversation
$tip.CreatedDate = [DateTime]::Parse('2024-09-23') | ||
$tip.Title = 'Press Tab twice to view all parameters, properties and possibilities' | ||
$tip.TipText = @' | ||
Add `Set-PSReadlineKeyHandler -Key Tab -Function Complete` to your PowerShell profile. This way you can press the Tab key twice after a command to view all possible parameters, properties, and possiblities. |
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.
Add `Set-PSReadlineKeyHandler -Key Tab -Function Complete` to your PowerShell profile. This way you can press the Tab key twice after a command to view all possible parameters, properties, and possiblities. | |
Add `Set-PSReadlineKeyHandler -Key Tab -Function Complete` to your PowerShell profile. This way you can press the Tab key twice after a command to view all possible parameters, properties, and possibilities. |
Spellcheck is complaining about this typo
$tip.CreatedDate = [DateTime]::Parse('2024-09-23') | ||
$tip.Title = 'Press Tab twice to view all parameters, properties and possibilities' | ||
$tip.TipText = @' | ||
Add `Set-PSReadlineKeyHandler -Key Tab -Function Complete` to your PowerShell profile. This way you can press the Tab key twice after a command to view all possible parameters, properties, and possiblities. |
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.
Spellcheck is also complaining that the various occurrences of Readline
should be ReadLine
, which I guess is technically correct according to the module and repo spelling. Do you mind fixing those up? Sorry for the nitpicky spellchecker 😅
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.
Also, now that I've approved a workflow run for you, I believe the workflows should run right away for any other PRs you submit, allowing you to get faster feedback about pipeline problems like this one.
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.
I have fixed the typos (and enabled the spell check extension in VS), so should be all good now.
Great tips. Thanks for contributing! 😀 |
Summary
Add a tip to set configure pressing tab twice to view all parameters, properties and possibilities.
Checklist
Tests have been added for this code change (if applicable)
Docs have been added or updated (if applicable)
Code format follows the project style
All new and existing tests passed
What type of changes does this PR include
Describe the change in more detail
Additional information