Thomas Nilsson
Thomas Nilsson
``` bash #!/bin/bash foo () { local baz=() echo "${baz[@]}" } bar () { local baz="" # Variable was used as an array but is now assigned a string. [SC2178]...
```diff diff --git a/mecha/parse.py b/mecha/parse.py index 7d873c3..7d99a08 100644 --- a/mecha/parse.py +++ b/mecha/parse.py @@ -1953,7 +1953,7 @@ def parse_message(stream: TokenStream) -> AstMessage: with ( stream.intercept("newline"), stream.syntax( - selector=r"@[praes]", + selector=r"@[praesn]", text=r"[^\n@]+",...
Don't know what is relevant or not, but was running an older 0.14 build, decided to compile master. Ran into `Error: Error { raw_code: Some(2), raw_os_message: Some("BadValue (integer parameter out...
Noticed that `--height` was not giving me the correct number of lines. ``` (knirch) @falschgeld| ~ $ br --height 10 -c:pt | wc -l 9 (knirch) @falschgeld| ~ $ br...
Use case; I have some binary files which I'd like to pretty print some details around, but forcing color output makes broot treat it as binary, so I'm "stuck" with...
shadow_color picker does not have a slider/value for alpha channel, and sets the color with alpha 0. ff0000 becomes 16711680 (red, fully translucent) rather than -65536 (red, fully opaque)
``` $ mecha -s macro/ Validating with mecha v0.98.1 Error: Plugin "mecha.contrib.statistics.Analyzer.finalize" raised an exception. Traceback (most recent call last): File "/home/knirch/mecha/mecha/contrib/statistics.py", line 90, in finalize logger.info(str(Summary(mc.spec, self.stats))) ~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File...