We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb55ca9 commit 6e4be0eCopy full SHA for 6e4be0e
src/filter/grammar.pest
@@ -3,7 +3,7 @@ CMD_START = _{ ":" }
3
CMT_START = _{ "#" }
4
CMD_END = _{("="|"/")}
5
CMD_SEP = _{(","|NEWLINE)}
6
-ALNUM = _{( ASCII_ALPHANUMERIC | "_" | "-" | "+" | "." | "*" )}
+ALNUM = _{( ASCII_ALPHANUMERIC | "_" | "-" | "+" | "." | "*" | "~")}
7
GROUP_START = _{ "[" }
8
GROUP_END = _{ "]" }
9
tests/filter/pretty_print.t
@@ -2,6 +2,8 @@
2
$ josh-filter -p :/a
:/a
+ $ josh-filter -p :/a~
+ :/a~
$ josh-filter -p :/a:/b
:/a/b
$ josh-filter -p :[:/a:/b,:/a/b]
0 commit comments