Skip to content
Snippets Groups Projects
Commit 4b0ae027 authored by Marijn Haverbeke's avatar Marijn Haverbeke
Browse files

[shell mode] Allow strings to span lines

Closes #4902
parent 2fcce279
No related branches found
No related tags found
No related merge requests found
......@@ -102,7 +102,7 @@ CodeMirror.defineMode('shell', function() {
}
escaped = !escaped && next === '\\';
}
if (end || !escaped) state.tokens.shift();
if (end) state.tokens.shift();
return style;
};
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment