jonaslu / ain

A HTTP API client for the terminal
MIT License
601 stars 13 forks source link

Executable regex misses nested parentheses #22

Closed jonaslu closed 9 months ago

jonaslu commented 10 months ago

The regex ends at the first ) making anything containing parenthesis fail: E g bash -c 'cat <(echo yo)') - will fail on unterminated escape sequence because the matched executable regex will be this: bash -c 'cat <(echo yo

jonaslu commented 9 months ago

Fixed in commit f52b82c