+ is a legal symbol constituent in elisp

pull/25/head
Wilfred Hughes 2021-07-18 23:36:35 +07:00
parent 88b0ec2283
commit ad81a86419
2 changed files with 3 additions and 2 deletions

@ -8,7 +8,8 @@ Improved parsing for Rust punctuation.
Improved parsing for OCaml punctuation.
Improved parsing for Emacs Lisp punctuation of `#`, `.` and `&`.
Improved parsing for Emacs Lisp symbols containing `+`, and
punctuation of `#`, `.` and `&`.
Improved parsing for Scheme punctuation of `#` and `.`.

@ -70,7 +70,7 @@ atom_patterns = [
# Numbers
'[0-9]+',
# Symbols (e.g. variable names)
'[a-zA-Z0-9_?:/*-]+',
'[a-zA-Z0-9_?:/*+-]+',
# Operators
"[`',#.&]",
]