fix colorview detection with inline comments (#660)
This commit is contained in:
parent
756fafe263
commit
93a15a8284
|
@ -358,6 +358,9 @@
|
||||||
let spansZombies = markedSpans && markedSpans.length;
|
let spansZombies = markedSpans && markedSpans.length;
|
||||||
const spanGeneration = state.now;
|
const spanGeneration = state.now;
|
||||||
|
|
||||||
|
// all comments may get blanked out in the loop
|
||||||
|
const endsWithComment = text.endsWith('*/');
|
||||||
|
|
||||||
for (let i = styleIndex; i + 1 < styles.length; i += 2) {
|
for (let i = styleIndex; i + 1 < styles.length; i += 2) {
|
||||||
style = styles[i + 1];
|
style = styles[i + 1];
|
||||||
const styleSupported = style && (style.includes('atom') || style.includes('keyword'));
|
const styleSupported = style && (style.includes('atom') || style.includes('keyword'));
|
||||||
|
@ -390,7 +393,7 @@
|
||||||
|
|
||||||
removeDeadSpans();
|
removeDeadSpans();
|
||||||
|
|
||||||
state.inComment = style && style.includes('comment') && !text.endsWith('*/');
|
state.inComment = style && style.includes('comment') && !endsWithComment;
|
||||||
state.line++;
|
state.line++;
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user