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 4f286fd commit 073524dCopy full SHA for 073524d
j-mode.el
@@ -80,10 +80,11 @@
80
"try." "except." "catch." "catcht." "catchd."
81
"while." "whilst."
82
"for.")))
83
- (seq (or "for" "goto" "label")
84
- (regexp "_[a-zA-Z]+\\."))))
+ (seq (or "for" "label") "_"
+ (+ (any "a-zA-Z"))
85
+ ".")))
86
(seq bol ":" eol)
- (seq (regexp "[_a-zA-Z0-9]+") (? "'")
87
+ (seq (+ (any "_a-zA-Z0-9")) (? "'")
88
(* "\s") "=" (or "." ":") (* "\s")
89
(or "{{"
90
(seq (regexp
@@ -102,7 +103,8 @@
102
103
"else." "elseif."
104
"case." "fcase."
105
"catch." "catcht." "catchd."
- "except.")))))))
106
+ "except."
107
+ "label")))))))
108
109
(defun j-thing-outside-string (thing-regexp)
110
"Look for REGEXP from `point' til `point-at-eol' outside strings and
0 commit comments