Remove rest to text in MLTEV for now

This commit is contained in:
Bryan Ashby 2017-08-17 21:14:05 -06:00
parent a7060a351b
commit 8a619b5138
1 changed files with 3 additions and 2 deletions

View File

@ -177,8 +177,9 @@ function MultiLineEditTextView(options) {
const absPos = self.getAbsolutePosition(startRow, 0); const absPos = self.getAbsolutePosition(startRow, 0);
for(let i = startIndex; i < endIndex; ++i) { for(let i = startIndex; i < endIndex; ++i) {
self.client.term.write( //${self.getSGRFor('text')}
`${self.getSGRFor('text')}${ansi.goto(absPos.row++, absPos.col)}${self.getRenderText(i)}`, self.client.term.write(
`${ansi.goto(absPos.row++, absPos.col)}${self.getRenderText(i)}`,
false // convertLineFeeds false // convertLineFeeds
); );
} }