linehighlight have wrong height on last line
This commit is contained in:
parent
635c5d05d5
commit
5505f69eb0
1 changed files with 6 additions and 5 deletions
|
|
@ -1151,6 +1151,10 @@ var EditSession = function(text, mode) {
|
|||
column: column
|
||||
};
|
||||
}
|
||||
|
||||
var rowData = this.$documentToScreenRow(row, column);
|
||||
var screenRow = rowData[0];
|
||||
|
||||
if (row >= this.getLength()) {
|
||||
return {
|
||||
row: screenRow,
|
||||
|
|
@ -1160,11 +1164,8 @@ var EditSession = function(text, mode) {
|
|||
|
||||
var split;
|
||||
var wrapRowData = this.$wrapData[row];
|
||||
var screenRow, screenRowOffset;
|
||||
var screenColumn;
|
||||
var rowData = this.$documentToScreenRow(row, column);
|
||||
screenRow = rowData[0];
|
||||
screenRowOffset = rowData[1];
|
||||
var screenRowOffset = rowData[1];
|
||||
|
||||
str = this.getLine(row).substring(
|
||||
wrapRowData[screenRowOffset - 1] || 0, column);
|
||||
|
|
@ -1191,4 +1192,4 @@ var EditSession = function(text, mode) {
|
|||
}).call(EditSession.prototype);
|
||||
|
||||
exports.EditSession = EditSession;
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue