From 89b39204c02a1c795cc38ce419a6faa53db08fd1 Mon Sep 17 00:00:00 2001 From: qwjyh Date: Tue, 27 Sep 2022 19:25:41 +0900 Subject: [PATCH] new: pwsh : set Ctrl+g for `Invoke-FzfTabCompletion` --- 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 7497e2a..efdd151 100644 --- a/dotfiles/pwsh/powershell_profile.ps1 +++ b/dotfiles/pwsh/powershell_profile.ps1 @@ -5,6 +5,7 @@ Set-PSReadlineOption -HistoryNoDuplicates Set-PSReadLineKeyHandler -Chord "Ctrl+f" -Function ForwardWord # like fish Set-PSReadLineKeyHandler -Chord "Tab" MenuComplete Set-PSReadLineKeyHandler -Chord "Ctrl+d" DeleteCharOrExit +Set-PSReadLineKeyHandler -Chord "Ctrl+g" -ScriptBlock { Invoke-FzfTabCompletion } # PsFzf Options # 'Ctrl+t' for provider path, 'Ctrl+r' for reverse history