More work on the new formatter

This commit is contained in:
Kovid Goyal
2022-09-03 10:56:48 +05:30
parent aad8cb3d1e
commit af7f4e97cf
2 changed files with 91 additions and 17 deletions

View File

@@ -21,6 +21,7 @@ func TestFormatWithIndent(t *testing.T) {
tx("testing\n\ntwo", "testing\n\n__two")
tx("testing\n \ntwo", "testing\n\n__two")
tx("123456 \x1b[31m789a", "123456\x1b[31m\n\x1b[39m__\x1b[31m789a")
tx("123456 \x1b[31m789a", "123456\n__\x1b[31m789a")
tx("12 \x1b[31m789 abcd", "12 \x1b[31m789\n\x1b[39m__\x1b[31mabcd")
tx("\x1b]8;;x\x1b\\text\x1b]8;;\x1b\\ two", "\x1b]8;;x\x1b\\text\x1b]8;;\x1b\\ two")
}