tree-sitter-awk icon indicating copy to clipboard operation
tree-sitter-awk copied to clipboard

GNU AWK grammar for tree-sitter

Results 4 tree-sitter-awk issues
Sort by recently updated
recently updated
newest added

The build step fails when installing this package through NPM. Please could you help? Term output: ``` > [email protected] install > node-gyp-build gyp info it worked if it ends with...

$ npm list [email protected] /Users/monty/prettier-plugin-awk-test ├── [email protected] └── [email protected] ``` /^Title/ { printf ("%s\t%s\t%s\t%s\tAvg Len\t%s\t%s\t%s\t%s\t%s\n", $1,$2,$3,$4,$5,$6,$7,$8,$9) } /=HYPERLINK/ { dur=$4 split (dur,fld," ") eplen = (fld[1]*60+fld[2])/$3 printf ("%s\t%s\t%s\t%s\t%d\t%s\t%s\t%s\t%s\t%s\n", $1,$2,$3,$4,eplen,$5,$6,$7,$8,$9) }...

bug

Concatenating the result of an operator group `(...)` together with a string inside a function triggers a syntax error. ```test.awk function f(s) { return s } BEGIN{ foo = ""...

bug

Detect things like the following as `@variable.builtin`: ``` ARGC ARGV CONVFMT ENVIRON FILENAME FS NF NR FNR OFMT OFS ORS RLENGTH RS RSTART SUBSEP $0 $1 .. $n ``` Also,...