Don't send command line for prompt resolving command

This commit is contained in:
Daniel Imms 2024-05-02 13:20:11 -07:00
parent ce5a56dc7d
commit 07e575b9b4
No known key found for this signature in database
GPG key ID: 5F0FF45B19E3A5D2

View file

@ -198,6 +198,9 @@ __vsc_update_cwd() {
}
__vsc_command_output_start() {
if [[ -z "$__vsc_first_prompt" ]]; then
builtin return
fi
builtin printf '\e]633;E;%s;%s\a' "$(__vsc_escape_value "${__vsc_current_command}")" $__vsc_nonce
builtin printf '\e]633;C\a'
}