Julien Nicoulaud

Results 86 issues of Julien Nicoulaud

Add support for commands colorized by [cope](https://github.com/yogan/cope). (after #44)

improvement

Add support for commands colorized by [cwrapper](http://cwrapper.sourceforge.net). (after #44)

improvement

Add support for commands colorized by [colorlogs](https://github.com/memorius/colorlogs). (after #44)

improvement

Add support for commands colorized by [grc](https://github.com/pengwynn/grc). (after #44)

improvement

Example: ``` ❯ rainbow --print-aliases alias df='rainbow df' alias ping='rainbow ping' alias diff='rainbow diff' ``` So that users can just put in their `~/.bashrc`: ``` eval $(rainbow --print-aliases) ```

feature

Add support for specifying if regex are case sensitive or not: * globally: env var/CLI option * Per regex in confs (to be considered as part of #2)

feature

Config files syntax are quite a hack, a proper DSL should be implemented (eg. using BNF).

feature

Since #24, the config lookup is pretty deep => allow users to customize it completely.

improvement

``` go package main import ( "fmt" "github.com/akavel/polyclip-go" ) func main() { subject := polyclip.Polygon{{{1,1}, {1,2}, {2, 2}, {2, 1}}} clipping := polyclip.Polygon{{{2,1}, {2,2}, {3, 2}, {3, 1}}, {{1,2}, {1,3},...

Fixes this warning on conf loading: ``` linux-thermaltake-rgb[374647]: /usr/lib/python3.8/site-packages/linux_thermaltake_rgb/daemon/config.py:42: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details. ``` See...