diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2025-06-24 22:50:02 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2025-06-25 02:12:10 +0900 |
| commit | 4811e52af3ed7f89e82baa908f9a8a25fb593361 (patch) | |
| tree | da7d88eadf9a0e8044b4748dd790cd599117b663 /src/ansi_test.go | |
| parent | 8d81730ec2855d3d32a171f8b675430ffb4c4d59 (diff) | |
| download | fzf-4811e52af3ed7f89e82baa908f9a8a25fb593361.tar.gz | |
Support full-line background color in the list section
Close #4432
Diffstat (limited to 'src/ansi_test.go')
| -rw-r--r-- | src/ansi_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ansi_test.go b/src/ansi_test.go index e3431231..7dfc7bba 100644 --- a/src/ansi_test.go +++ b/src/ansi_test.go @@ -22,7 +22,7 @@ import ( // (archived from http://ascii-table.com/ansi-escape-sequences-vt-100.php) // - http://tldp.org/HOWTO/Bash-Prompt-HOWTO/x405.html // - https://invisible-island.net/xterm/ctlseqs/ctlseqs.html -var ansiRegexReference = regexp.MustCompile("(?:\x1b[\\[()][0-9;:]*[a-zA-Z@]|\x1b][0-9][;:][[:print:]]+(?:\x1b\\\\|\x07)|\x1b.|[\x0e\x0f]|.\x08)") +var ansiRegexReference = regexp.MustCompile("(?:\x1b[\\[()][0-9;:]*[a-zA-Z@]|\x1b][0-9][;:][[:print:]]+(?:\x1b\\\\|\x07)|\x1b.|[\x0e\x0f]|.\x08|\n)") func testParserReference(t testing.TB, str string) { t.Helper() |
