Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improve ValueParser, handle escaped characters
Before this, `--width-1\/2` would be handled as: ```json [ { kind: 'word', value: '--width-\\' } { kind: 'separator', value: '/' } { kind: 'word', value: '2' } ] ``` But now it will be handled as: ```json [ { kind: 'word', value: '--width-\\/2' } ] ```
- Loading branch information