The ANSI grammar generator currently uses octal escape codes to match
escape characters, but they are disallowed in CoffeeScript strict mode
and in ES5 strict mode. Use hex escape codes instead, which yield the
same result and are supported.
Running coffee lib/grammar-ansi-coloring.coffee returns the following
error currently:
/atom-xikij/lib/grammar-ansi-coloring.coffee:130:12: error: octal escape
sequences are not allowed \03
b: /(\033\[)(?=(\d+;)*\d+m)/
^^^
The ANSI grammar generator currently uses octal escape codes to match escape characters, but they are disallowed in CoffeeScript strict mode and in ES5 strict mode. Use hex escape codes instead, which yield the same result and are supported.
Running
coffee lib/grammar-ansi-coloring.coffee
returns the following error currently: