We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3df2411 commit 935cd31Copy full SHA for 935cd31
src/vs/workbench/contrib/terminal/browser/media/shellIntegration-rc.zsh
@@ -50,7 +50,8 @@ __vsc_update_cwd() {
50
51
__vsc_command_output_start() {
52
builtin printf "\033]633;C\007"
53
- builtin printf "\033]633;E;$__vsc_current_command\007"
+ # Send command line, escaping printf format chars %
54
+ builtin printf "\033]633;E;$(echo $__vsc_current_command | sed s/%/%%/g)\007"
55
}
56
57
__vsc_continuation_start() {
0 commit comments