Skip to content

Commit 096b105

Browse files
committed
Adding missing backticks
My fault for editing the file in Github in the first place...
1 parent 806033d commit 096b105

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PSReadLine/SamplePSReadlineProfile.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ Set-PSReadlineKeyHandler -Key DownArrow -Function HistorySearchForward
2222
# really easy to find a command you previously used.
2323
# Either press F7 to bring up your entire history, or type part of the
2424
# command line and then press F7 to bring up just the commands that match.
25-
Set-PSReadlineKeyHandler -Key F7
26-
-BriefDescription History
27-
-LongDescription 'Show history'
25+
Set-PSReadlineKeyHandler -Key F7 `
26+
-BriefDescription History `
27+
-LongDescription 'Show history' `
2828
-ScriptBlock {
2929
$history = [System.Collections.ArrayList]([System.IO.File]::ReadAllLines((Get-PSReadlineOption).HistorySavePath))
3030
$history.Reverse()

0 commit comments

Comments
 (0)