From 1d201c0f6b5d3510372e4bcf519ca3e113877ce4 Mon Sep 17 00:00:00 2001 From: qwjyh Date: Fri, 30 Sep 2022 17:30:00 +0900 Subject: [PATCH] add: pwsh :PSReadLine ding tone to 880 --- dotfiles/pwsh/powershell_profile.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/dotfiles/pwsh/powershell_profile.ps1 b/dotfiles/pwsh/powershell_profile.ps1 index 5f1253c..b756192 100644 --- a/dotfiles/pwsh/powershell_profile.ps1 +++ b/dotfiles/pwsh/powershell_profile.ps1 @@ -4,6 +4,7 @@ Import-Module PSReadLine Set-PSReadLineOption -PredictionSource History Set-PSReadlineOption -HistoryNoDuplicates +Set-PSReadLineOption -DingTone 880 # beep frequency Set-PSReadLineKeyHandler -Chord "Ctrl+f" -Function ForwardWord # like fish Set-PSReadLineKeyHandler -Chord "Tab" MenuComplete Set-PSReadLineKeyHandler -Chord "Ctrl+d" DeleteCharOrExit