Results 8 comments of zakuro

I tried it. walking './vlib' is works. But walking '/home/zakuro/src' is hungup. In golang, Works both. I think, This problem occurs when target files too many.

I have thought about the awk backend. It is an attractive option and has been put off simply because of the cost of implementation, so contributions are most welcome! Contributors...

Output shell script contains `echo` command. But echo command is not portable. It should be replaced with other way e.g. `printf` command https://pubs.opengroup.org/onlinepubs/9699919799/ > New applications are encouraged to use...

Hmm. But POSIX says `New applications are encouraged to use printf instead of echo.` and Using both echo and printf to output strings is prone to causing bugs, so It...

Thank you to report issue > When I save a file that contains ui in it eg: ui.textbox , it will delete the 'ui' within the whole code. So when...

Probably the cause of this problem is that type is a reserved word

https://github.com/vlang/v/blob/650cdef8b406955ec4d3d24853b49663a3a209a4/vlib/v/scanner/scanner.v#L712 `$type` is scanned into `$` `key_type`

$type is translated to v code at compile time https://github.com/vlang/v/blob/650cdef8b406955ec4d3d24853b49663a3a209a4/vlib/v/parser/comptime.v#L47-L114