diff options
author | Peter Elliott <pelliott@ualberta.ca> | 2021-12-27 19:22:53 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-12-29 00:00:02 +0100 |
commit | 63127422577f5c0127e8a5284f354f914dc843d3 (patch) | |
tree | bd4637d852548b68cf6ba39fa4c0b09c4d4ddcf1 /Userland/Utilities | |
parent | 3677e88fb1eec833bf1a7056e7314e3b6ad77478 (diff) | |
download | serenity-63127422577f5c0127e8a5284f354f914dc843d3.zip |
less: Remove all formatting before printing status line
Diffstat (limited to 'Userland/Utilities')
-rw-r--r-- | Userland/Utilities/less.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Utilities/less.cpp b/Userland/Utilities/less.cpp index e8568580de..68e2a12f2c 100644 --- a/Userland/Utilities/less.cpp +++ b/Userland/Utilities/less.cpp @@ -271,9 +271,9 @@ public: void status_line() { - out(m_tty, "\e[7m "); + out(m_tty, "\e[0;7m "); render_status_line(m_prompt); - out(m_tty, " \e[27m"); + out(m_tty, " \e[0m"); } bool read_line() |