2
3
réplica de https://github.com/sammy-ette/Hilbish sincronizado 2025-08-10 02:52:03 +00:00

fix(ansikit)!: return hyperlink ascii code instead of printing it

Este cometimento está contido em:
sammyette 2021-10-17 19:19:43 -04:00
ascendente 72194898ba
cometimento 7a4cbbddff
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados
ID da chave GPG: 50EE40A2809851F5

Ver ficheiro

@ -80,7 +80,7 @@ end
ansikit.link = function(url, text)
if not url then error 'ansikit: missing url for hyperlink' end
local text = (text and text or 'link')
io.write(lunacolors.blue('\27]8;;' .. url .. '\27\\' .. text .. '\27]8;;\27\\\n'))
return lunacolors.blue('\27]8;;' .. url .. '\27\\' .. text .. '\27]8;;\27\\\n')
end
ansikit.print = function(text)