From 63127422577f5c0127e8a5284f354f914dc843d3 Mon Sep 17 00:00:00 2001 From: Peter Elliott Date: Mon, 27 Dec 2021 19:22:53 -0700 Subject: [PATCH] less: Remove all formatting before printing status line --- Userland/Utilities/less.cpp | 4 ++-- 1 file 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()