fix: remove newline from prompt

windows-fixes
TorchedSammy 2022-03-06 22:23:38 -04:00
parent b7478c3c1a
commit 3babf36c43
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
1 changed files with 1 additions and 1 deletions

View File

@ -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