Skip to content

Commit

Permalink
Lean: add "^" operator
Browse files Browse the repository at this point in the history
Fixes #1163
  • Loading branch information
birkenfeld committed Dec 1, 2019
1 parent 4cd83f9 commit 411a7b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygments/lexers/theorem.py
Expand Up @@ -418,7 +418,7 @@ class LeanLexer(RegexLexer):
u'<-', u'=', u'==', u'>', u'_', u'|', u'||', u'~', u'=>', u'<=', u'>=',
u'/\\', u'\\/', u'∀', u'Π', u'λ', u'↔', u'∧', u'∨', u'≠', u'≤', u'≥',
u'¬', u'⁻¹', u'⬝', u'▸', u'→', u'∃', u'ℕ', u'ℤ', u'≈', u'×', u'⌞',
u'⌟', u'≡', u'⟨', u'⟩',
u'⌟', u'≡', u'⟨', u'⟩', u'^',
)

punctuation = (u'(', u')', u':', u'{', u'}', u'[', u']', u'⦃', u'⦄',
Expand Down

0 comments on commit 411a7b4

Please sign in to comment.