2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-02 03:33:22 +00:00

fix: remove newline from prompt

This commit is contained in:
TorchedSammy 2022-03-06 22:23:38 -04:00
parent b7478c3c1a
commit 3babf36c43
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD

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