Skip to content

Commit f7835b7

Browse files
committed
Reserve some characters (requiring quotation within atoms)
1 parent 9304f3c commit f7835b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/language/parsing/atom.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ const quotedAtom = parser.sequence([
3535
])
3636

3737
const unquotedAtom = parser.oneOrMore(
38-
parser.regularExpression(/[^\s,:{}()=>]+/),
38+
parser.regularExpression(/[^\s{}[\]()<>#&\|\\=:;,]+/),
3939
)

0 commit comments

Comments
 (0)