Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ruudmens committed Sep 24, 2024
1 parent 13c6d81 commit 742f585
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ $tip = [tiPS.PowerShellTip]::new()
$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.
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.
The double tab method is similar to the normal tab completion, except it will show you all of the options at once instead of just one option at a time.
Expand All @@ -13,7 +13,7 @@ $tip.Example = @'
notepad $profile
# Add the following line:
Set-PSReadlineKeyHandler -Key Tab -Function Complete
Set-PSReadLineKeyHandler -Key Tab -Function Complete
'@
$tip.Urls = @(
'https://lazyadmin.nl/powershell/powershell-cheat-sheet/#good-to-know'
Expand Down

0 comments on commit 742f585

Please sign in to comment.