return false;
}
const piece = val.piece;
const lineStarts = this._buffers[piece.bufferIndex].lineStarts;
const line = piece.start.line;
const startOffset = lineStarts[line] + piece.start.column;
if (line === lineStarts.length - 1) {
// last line, so there is no line feed at the end of this line
return false;
}
if (nextLineOffset > startOffset + 1) {
return false;
}