From c10052c229fef06b4a2b9dd45d82e33d03544f96 Mon Sep 17 00:00:00 2001 From: Jacquin Moon Date: Wed, 27 Nov 2024 16:11:58 +0700 Subject: [PATCH] :sparkles: feat: powershell tab completion invoke fzf --- dotposh/Config/posh-readline.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotposh/Config/posh-readline.ps1 b/dotposh/Config/posh-readline.ps1 index bb9236d..c489374 100644 --- a/dotposh/Config/posh-readline.ps1 +++ b/dotposh/Config/posh-readline.ps1 @@ -58,7 +58,7 @@ $PSReadLineOptions = @{ } Set-PSReadLineOption @PSReadLineOptions -Set-PSReadLineKeyHandler -Key Tab -Function MenuComplete +Set-PSReadLineKeyHandler -Key Tab -ScriptBlock { Invoke-FzfTabCompletion } Set-PSReadLineKeyHandler -Key UpArrow -Function HistorySearchBackward Set-PSReadLineKeyHandler -Key DownArrow -Function HistorySearchForward