parent
2d50a8aa95
commit
f06307cb4c
|
@ -2263,13 +2263,11 @@ function Ace2Inner(editorInfo, cssManagers) {
|
||||||
detectChangesAroundLine(0, 1);
|
detectChangesAroundLine(0, 1);
|
||||||
detectChangesAroundLine(N - 1, 1);
|
detectChangesAroundLine(N - 1, 1);
|
||||||
|
|
||||||
for (const k in observedChanges.cleanNodesNearChanges) {
|
for (const k of Object.keys(observedChanges.cleanNodesNearChanges)) {
|
||||||
if (observedChanges.cleanNodesNearChanges[k]) {
|
const key = k.substring(1);
|
||||||
const key = k.substring(1);
|
if (rep.lines.containsKey(key)) {
|
||||||
if (rep.lines.containsKey(key)) {
|
const line = rep.lines.indexOfKey(key);
|
||||||
const line = rep.lines.indexOfKey(key);
|
detectChangesAroundLine(line, 2);
|
||||||
detectChangesAroundLine(line, 2);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue