From c42b6da63f8b33999c064b3bec0b4f4c767c46ce Mon Sep 17 00:00:00 2001 From: Chapman Pendery <35637443+cpendery@users.noreply.github.com> Date: Fri, 22 Dec 2023 13:56:06 -0500 Subject: [PATCH] fix: typo triggering VSC instead of IS escape function (#137) Signed-off-by: Chapman Pendery --- shell/shellIntegration-rc.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/shellIntegration-rc.zsh b/shell/shellIntegration-rc.zsh index 90f1eca..ca8c943 100644 --- a/shell/shellIntegration-rc.zsh +++ b/shell/shellIntegration-rc.zsh @@ -36,7 +36,7 @@ __is_escape_value() { } __is_update_cwd() { - builtin printf '\e]6973;CWD;%s\a' "$(__vsc_escape_value "${PWD}")" + builtin printf '\e]6973;CWD;%s\a' "$(__is_escape_value "${PWD}")" } __is_update_prompt() {