Skip to content

Commit

Permalink
fix: change regexp stored in auto-mode-alist
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyure-A committed Mar 13, 2024
1 parent 1d1bbe7 commit 682b44c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions satysfi-ts-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,8 @@

(when (treesit-ready-p 'satysfi)
(add-hook 'satysfi-ts-mode-hook (lambda () (setq comment-start "%") (setq comment-continue "") (setq comment-end "")))
(add-to-list 'auto-mode-alist '("\\.saty$'" . satysfi-ts-mode))
(add-to-list 'auto-mode-alist '("\\.satyh$'" . satysfi-ts-mode))))
(add-to-list 'auto-mode-alist '("\\.saty\\'" . satysfi-ts-mode))
(add-to-list 'auto-mode-alist '("\\.satyh\\'" . satysfi-ts-mode))))

(provide 'satysfi-ts-mode)
;;; satysfi-ts-mode.el ends here

0 comments on commit 682b44c

Please sign in to comment.