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 9564992 commit 4b9f588Copy full SHA for 4b9f588
elixir-mode.el
@@ -185,7 +185,9 @@ for the Elixir programming language."
185
`(
186
(atoms . ,(rx ":"
187
(or
188
- (one-or-more (any "a-z" "A-Z" "_" "\"" "'"))
+ (and
189
+ (any "a-z" "A-Z" "_" "\"" "'")
190
+ (zero-or-more (any "a-z" "A-Z" "0-9" "_" "\"" "'")))
191
(and "\"" (one-or-more (not (any "\""))) "\"")
192
(and "'" (one-or-more (not (any "'"))) "'"))))
193
(builtin . ,(rx symbol-start
0 commit comments