erlang: Fix highlighting of empty records
For example -record(state, {}) Would not highlight `state` as a type since the alternation didn't allow for an empty tuple. Allowing the inner atom of the tuple to be optional fixes this case.
This commit is contained in:
parent
acf3599723
commit
ac669ade05
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@
|
||||||
.
|
.
|
||||||
[(atom) @type (macro)]
|
[(atom) @type (macro)]
|
||||||
[
|
[
|
||||||
(tuple (atom) @variable.other.member)
|
(tuple (atom)? @variable.other.member)
|
||||||
(tuple
|
(tuple
|
||||||
(binary_operator
|
(binary_operator
|
||||||
left: (atom) @variable.other.member
|
left: (atom) @variable.other.member
|
||||||
|
|
Loading…
Add table
Reference in a new issue