From 3babf36c438da2da3f886eb1040f11857fd515fc Mon Sep 17 00:00:00 2001 From: TorchedSammy <38820196+TorchedSammy@users.noreply.github.com> Date: Sun, 6 Mar 2022 22:23:38 -0400 Subject: [PATCH] fix: remove newline from prompt --- .hilbishrc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.hilbishrc.lua b/.hilbishrc.lua index cbe0884..3940c5c 100644 --- a/.hilbishrc.lua +++ b/.hilbishrc.lua @@ -5,7 +5,7 @@ local ansikit = require 'ansikit' local function doPrompt(fail, mode) hilbish.prompt(lunacolors.format( - '{blue}%u {cyan}%d\n' .. (fail and '{red}' or '{green}') .. '∆ ' + '{blue}%u {cyan}%d ' .. (fail and '{red}' or '{green}') .. '∆ ' )) end