Fix tabs to not overwrite cells

This commit is contained in:
Fredrik Fornwall
2016-02-25 16:33:00 +01:00
parent ce7ad530cd
commit 6ca055bb25
4 changed files with 30 additions and 17 deletions

View File

@@ -163,7 +163,12 @@ public class CursorAndScreenTest extends TerminalTestCase {
}
}
public void testHorizontalTabColorsBackground() {
/**
* See comments on horizontal tab handling in TerminalEmulator.java.
*
* We do not want to color already written cells when tabbing over them.
*/
public void DISABLED_testHorizontalTabColorsBackground() {
withTerminalSized(10, 3).enterString("\033[48;5;15m").enterString("\t");
assertCursorAt(0, 8);
for (int i = 0; i < 10; i++) {