From 259114daa0d5b8ff4333b9fc8a079153a2ffdae0 Mon Sep 17 00:00:00 2001 From: alexis-opolka <53085471+alexis-opolka@users.noreply.github.com> Date: Sun, 16 Mar 2025 10:39:35 +0100 Subject: [PATCH] Fixes powershell export Signed-off-by: alexis-opolka <53085471+alexis-opolka@users.noreply.github.com> --- shell/navi.plugin.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/navi.plugin.ps1 b/shell/navi.plugin.ps1 index dd63c64..3983898 100644 --- a/shell/navi.plugin.ps1 +++ b/shell/navi.plugin.ps1 @@ -50,5 +50,5 @@ $null = New-Module { } Set-PSReadlineKeyHandler -BriefDescription "A keybinding to open Navi Widget" -Chord Ctrl+g -ScriptBlock { Invoke-NaviWidget } - Export-ModuleMember -Function @( Navi-Widget ) + Export-ModuleMember -Function @() }