Uhh actually commit fix
This commit is contained in:
parent
face772865
commit
9efccbb776
1 changed files with 1 additions and 1 deletions
|
|
@ -214,7 +214,7 @@ var ElasticTabstops = function(editor, session) {
|
|||
if (difference > 0) {
|
||||
// put the spaces after the tab and then delete the tab, so any insertion
|
||||
// points behave as expected
|
||||
this.$session.getDocument().insertInLine({row: row, column: it + 1}, Array(difference).join(" ") + "\t");
|
||||
this.$session.getDocument().insertInLine({row: row, column: it + 1}, Array(difference + 1).join(" ") + "\t");
|
||||
this.$session.getDocument().removeInLine(row, it, it + 1);
|
||||
|
||||
bias += difference;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue