Skip to content

Commit

Permalink
Remove unused abbrevation setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mekeor committed Dec 7, 2024
1 parent 8e5923c commit ef00d28
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions lean4-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,6 @@ file, recompiling, and reloading all imports."
;; (local-set-key (kbd "<mouse-3>") #'lean4-right-click-show-menu)
)

(define-abbrev-table 'lean4-abbrev-table
'())

(defvar lean4-mode-map (make-sparse-keymap)
"Keymap used in Lean mode.")

Expand Down Expand Up @@ -217,7 +214,6 @@ of the parent project."
\\{lean4-mode-map}"
:syntax-table lean4-syntax-table
:abbrev-table lean4-abbrev-table
:group 'lean4
(set (make-local-variable 'comment-start) "--")
(set (make-local-variable 'comment-start-skip) "[-/]-[ \t]*")
Expand All @@ -235,7 +231,6 @@ of the parent project."
(lean4-set-keys)
(if (fboundp 'electric-indent-local-mode)
(electric-indent-local-mode -1))
;; (abbrev-mode 1)
(pcase-dolist (`(,hook . ,fn) lean4-hooks-alist)
(add-hook hook fn nil 'local))
(lean4-mode-setup))
Expand Down

0 comments on commit ef00d28

Please sign in to comment.