zed-pest icon indicating copy to clipboard operation
zed-pest copied to clipboard

Pest support for Zed

Results 1 zed-pest issues
Sort by recently updated
recently updated
newest added

Given the grammar: ``` numberOfDice = { ASCII_DIGIT+ } numberExpression = _{ numberOfDice? ~ "d" } dieSize = { ASCII_DIGIT+ } numberOfLowDiceToDrop = { ASCII_DIGIT+ } numberOfHighDiceToKeep = { ASCII_DIGIT+...