Skip to content

Commit

Permalink
refactor(revert): correct ANSI sequence for line break
Browse files Browse the repository at this point in the history
This reverts commit decd2a9.
  • Loading branch information
JanDeDobbeleer committed Oct 20, 2020
1 parent decd2a9 commit e5ab4e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renderer.go
Expand Up @@ -72,7 +72,7 @@ func (r *Renderer) init(shell string) {
r.formats.single = "\x1b[%sm%s\x1b[0m"
r.formats.full = "\x1b[%sm\x1b[%sm%s\x1b[0m"
r.formats.transparent = "\x1b[%s;49m\x1b[7m%s\x1b[m\x1b[0m"
r.formats.linebreak = "\x1b[E"
r.formats.linebreak = "\x1b[1000C "
r.formats.linechange = "\x1b[%d%s"
r.formats.left = "\x1b[%dC"
r.formats.right = "\x1b[%dD"
Expand Down

0 comments on commit e5ab4e7

Please sign in to comment.