spacemacs-elpa/26.3/develop/evil-matchit-20200812.1050/evil-matchit-latex.el
Yann Esposito (Yogsototh) 49ea931ec3
big update
2020-08-22 09:35:46 +02:00

50 lines
1.6 KiB
EmacsLisp

;;; evil-matchit-latex.el --- latex plugin of evil-matchit
;; Copyright (C) 2014-2020 Chen Bin <chenbin DOT sh AT gmail DOT com>
;; Author: Chen Bin <chenbin DOT sh AT gmail DOT com>
;; This file is not part of GNU Emacs.
;;; License:
;; This file is part of evil-matchit
;;
;; evil-matchit is free software: you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as published
;; by the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; evil-matchit is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;
;;; Commentary:
;;
;;; Code:
(require 'evil-matchit-sdk)
(defvar evilmi-latex-extract-keyword-howtos
'(("\\\\\\([a-zA-Z]+\\(\{[a-zA-Z0-9+*_-]+\}\\)?\\)" 1)))
(defvar evilmi-latex-match-tags
'((("if[a-zA-Z]+" "if") "else" "fi" "MONOGAMY")
("left" nil "right" "MONOGAMY")
("begin[a-z]+" nil "end[a-z]+")
("begin\{[a-zA-Z0-9+*_-]+\}" nil "end\{[a-zA-Z0-9+*_-]+\}")))
;;;###autoload
(defun evilmi-latex-get-tag ()
(evilmi-sdk-get-tag evilmi-latex-match-tags evilmi-latex-extract-keyword-howtos))
;;;###autoload
(defun evilmi-latex-jump (rlt num)
(evilmi-sdk-jump rlt num evilmi-latex-match-tags evilmi-latex-extract-keyword-howtos))
(provide 'evil-matchit-latex)
;;; evil-matchit-latex.el ends here