ice / framework

Source code of Ice framework
https://www.iceframework.org
BSD 3-Clause "New" or "Revised" License
341 stars 45 forks source link

Console, colors are missing #258

Closed mruz closed 4 years ago

mruz commented 4 years ago
let e = "\e", 

\e character (hex 1B) is escaped to \\e

https://github.com/phalcon/zephir/issues/2065

A solution could be change to:

let e = chr(27),
mruz commented 4 years ago

It has been fixed in zephir development branch.

mruz commented 4 years ago

Fixed in https://github.com/ice/framework/pull/264