Volodymyr Gubarkov

Results 66 issues of Volodymyr Gubarkov

https://invisible-island.net/mawk/

![image](https://user-images.githubusercontent.com/11706893/120727459-4473eb80-c4e3-11eb-92d1-9da7fc87652c.png)

bug

https://github.com/JetBrains/Grammar-Kit/blob/master/TUTORIAL.md https://github.com/JetBrains/Grammar-Kit/blob/master/HOWTO.md#22-using-recoverwhile-attribute

enhancement

This needs a tool to measure code coverage of AWK code, which to my knowledge is absent atm. Can we enhance GoAWK with code similar to https://github.com/golang/go/tree/master/src/cmd/cover?

idea

This idea pops for some time. Sometimes it makes sense to make some goals silent (like `./makesure ssh`) whereas the global setting is `@option timings` ```shell @options timing @goal ssh...

idea

It could be nice if we use colors for output. But only for intercative use, obviously. Ex.: goal fails will be more prominent if the output will be in red.

idea

Motivation: simplify logic in https://github.com/xonixx/intellij-awk/blob/f4e36b0121a82a4840794b96a476e089b194e7b1/Makesurefile#L65 and below. ------ ```shell @goal name @list val1 'val2' $'val3' @depends_on other@$ITEM echo $ITEM $INDEX $TOTAL @list L val1 'val2' $'val3' @goal name @list L...

idea

https://github.com/actions/virtual-environments/issues/2961#issuecomment-801337633

enhancement

See https://www.gnu.org/software/gawk/manual/html_node/Close-Files-And-Pipes.html#index-sidebar-10 ``` $ awk --posix 'BEGIN { (s="echo 123; exit 10") | getline; print; print close(s) }' 123 0 $ awk 'BEGIN { (s="echo 123; exit 10") | getline;...

Come up with items to optimize. See also https://stackoverflow.com/a/6314744/104522

optimize