Skip to content

Commit

Permalink
evil-tex--env-select fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iyefrat committed Jul 20, 2020
1 parent 14c24f7 commit 91e4b44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions evil-tex.el
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ qux
((looking-at (regexp-quote "\\begin{"))
t)
;; `LaTeX-find-matching-begin' doesn't like being near the } of \\end{}
((or (= (char-before ?}))
(= (char-after ?})))
((or (= (char-before) ?})
(= (char-after) ?}))
(backward-char 2)
(LaTeX-find-matching-begin))
(t
Expand Down

0 comments on commit 91e4b44

Please sign in to comment.