aboutsummaryrefslogtreecommitdiff
path: root/src/utils/parse
Commit message (Collapse)AuthorAgeFilesLines
* fix regression of message filters not matching without formattingGravatar jesopo2020-04-081-2/+2
|
* fail an alias when an ${} var isn't foundGravatar jesopo2020-04-081-2/+5
|
* add a `flag` command spec typeGravatar jesopo2020-03-051-2/+16
|
* convert & in sed to \g<0> so python handles full-match replacementsGravatar jesopo2020-02-261-10/+4
|
* deduplicate spec arg namesGravatar jesopo2020-02-251-1/+1
|
* open possibly-utf8 files with forced utf8Gravatar jesopo2020-02-241-3/+3
|
* a comment!Gravatar jesopo2020-02-191-0/+3
|
* fix format_token return typehintsGravatar jesopo2020-02-191-2/+2
|
* change format_tokens from $VAR to ${VAR}Gravatar jesopo2020-02-191-16/+13
|
* remove debug printGravatar jesopo2020-02-161-1/+0
|
* fix _set_modifier typingGravatar jesopo2020-02-151-1/+1
|
* implement command spec modifiers, use for `pattern`, use pattern for dice.pyGravatar jesopo2020-02-151-6/+29
|
* use re.sub, not str.replace, otherwise things like "$" dont workGravatar jesopo2020-02-141-1/+1
|
* move SpecTypeErro to utils.parse.specGravatar jesopo2020-02-141-0/+5
|
* split out command_spec moduleGravatar jesopo2020-02-141-7/+7
|
* support & in utils.parse.sed, change sed.py to use utils.parse.sedGravatar jesopo2020-02-091-19/+33
|
* add utils.parse.sed.Gravatar jesopo2020-02-092-1/+75
|
* fix SpecTypeArgumentDate simple()Gravatar jesopo2020-02-061-1/+1
|
* add command spec type "words" - array of remaining wordsGravatar jesopo2020-02-051-0/+7
|
* add 'date' command spec typeGravatar jesopo2020-01-301-0/+10
|
* split utils.datetime out in to .parse and .formatGravatar jesopo2020-01-301-1/+1
|
* SpecArgumentTypeString should return None when no argsGravatar jesopo2020-01-291-1/+3
|
* change "non-consuming spec arg" character from "=" to "-"Gravatar jesopo2020-01-281-1/+1
|
* allow spec arguments to be "non-consuming" (doesn't show up in usage)Gravatar jesopo2020-01-271-5/+14
|
* add 'int' command arg spec typeGravatar jesopo2020-01-273-8/+18
|
* add "additional word" (`aword`) command arument spec typeGravatar jesopo2020-01-271-0/+7
|
* add tstring spec type, string with trimmed consecutive spacesGravatar jesopo2020-01-261-0/+4
|
* fix typehinting issuesGravatar jesopo2020-01-261-3/+4
|
* support command spec literalsGravatar jesopo2020-01-261-25/+63
|
* split utils/parse.py in to multiple filesGravatar jesopo2020-01-263-0/+272