Resolves #497 -- fix unescaping random content from terminal (more)

This commit is contained in:
Peter Cottle 2018-11-14 19:22:19 -08:00
parent f55edd1398
commit 1ed0d31586

View file

@ -24,7 +24,8 @@ exports.splitTextCommand = function(value, func, context) {
.replace(/^(\s+)/, '')
.replace(/(\s+)$/, '')
.replace(/"/g, '"')
.replace(/'/g, "'");
.replace(/'/g, "'")
.replace(///g, "/");
if (index > 0 && !command.length) {
return;