From 242cba4bff811e37b8dce7cd8cc5df31f694be30 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 26 May 2022 14:45:43 -0700 Subject: [PATCH] Add progress when executing query --- scripts/powershell_plugin.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/powershell_plugin.ps1 b/scripts/powershell_plugin.ps1 index ac6d35b..1cebd76 100644 --- a/scripts/powershell_plugin.ps1 +++ b/scripts/powershell_plugin.ps1 @@ -12,7 +12,9 @@ function create_completion() { return "`nnotepad $profile" } + write-progress -id 1 -activity "Codex query" $output = echo -n $buffer | python $nl_cli_script + write-progress -id 1 -activity "Codex query" -completed return $output }