Skip to content

Commit

Permalink
Fix Java textblock syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
kazk authored and marijnh committed Apr 13, 2022
1 parent b4112c6 commit 16438e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mode/clike/clike.js
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ CodeMirror.defineMode("clike", function(config, parserConfig) {
return "meta";
},
'"': function(stream, state) {
if (!stream.match('""\n')) return false;
if (!stream.match(/""$/)) return false;
state.tokenize = tokenTripleString;
return state.tokenize(stream, state);
}
Expand Down

0 comments on commit 16438e1

Please sign in to comment.