提交 9e0374f2 编写于 作者: D Dirk Baeumer

Fixes #46709: Tasks: Single/double quotes not quoted/escaped

上级 3fca7078
......@@ -62,18 +62,24 @@ export class TerminalTaskSystem implements ITaskSystem {
'powershell': {
escape: {
escapeChar: '`',
charsToEscape: ` ()`
charsToEscape: ' "\'()'
},
strong: '\'',
weak: '"'
},
'bash': {
escape: '\\',
escape: {
escapeChar: '\\',
charsToEscape: ' "\''
},
strong: '\'',
weak: '"'
},
'zsh': {
escape: '\\',
escape: {
escapeChar: '\\',
charsToEscape: ' "\''
},
strong: '\'',
weak: '"'
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册