Skip to content

Parser Fixes

Michael Aaron Murphy requested to merge mmstick:parser_fixing into master

With this change, the parsing bugs have been resolved, and it's now possible to write commands like the following:

let current_branch = $(git status -b | awk 'NR == 1 {print $3}')
let modified = $(git status | rg 'modified' -c)
echo $(echo one $(echo two) three)

Merge request reports