Closes #7
@ -3,6 +3,8 @@
Improved Rust parsing to recognise lifetime syntax `'foo`, character
literals `'x'` and sequences of punctuation.
Improve punctuation parsing for OCaml and JS.
Fixed an issue where the diff calculated may not be minimal.
## 0.2
@ -6,7 +6,7 @@ atom_patterns = [
# Symbols (e.g. variable names)
'[.a-zA-Z0-9_]+',
# Operators
'[=<>/*+?:;,-]+',
'[=<>/*+?:;,-]',
]
string_patterns = [
# Double-quoted strings
@ -111,7 +111,7 @@ atom_patterns = [
'[?~=<>/*+-]+',
'[?~=<>/*+-,&|]',