mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-28 08:50:06 +02:00
Resolves #497 -- fix unescaping random content from terminal (more)
This commit is contained in:
parent
f55edd1398
commit
1ed0d31586
1 changed files with 2 additions and 1 deletions
|
@ -24,7 +24,8 @@ exports.splitTextCommand = function(value, func, context) {
|
||||||
.replace(/^(\s+)/, '')
|
.replace(/^(\s+)/, '')
|
||||||
.replace(/(\s+)$/, '')
|
.replace(/(\s+)$/, '')
|
||||||
.replace(/"/g, '"')
|
.replace(/"/g, '"')
|
||||||
.replace(/'/g, "'");
|
.replace(/'/g, "'")
|
||||||
|
.replace(///g, "/");
|
||||||
|
|
||||||
if (index > 0 && !command.length) {
|
if (index > 0 && !command.length) {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue