allow "^" in mini notation step

This commit is contained in:
Felix Roos 2022-02-12 22:56:03 +01:00
parent 2069b02ba7
commit ffffca8cdc
2 changed files with 128 additions and 117 deletions

View file

@ -80,7 +80,7 @@ quote = '"' / "'"
// ------------------ steps and cycles ---------------------------
// single step definition (e.g bd)
step_char = [0-9a-zA-Z~] / "-" / "#" / "."
step_char = [0-9a-zA-Z~] / "-" / "#" / "." / "^"
step = ws chars:step_char+ ws { return chars.join("") }
// define a sub cycle e.g. [1 2, 3 [4]]