1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Add elixir-ts-mode-hook to elixir-ts-mode

* lisp/progmodes/elixir-ts-mode.el (elixir-ts-mode-hook):
Make hook available to customize.  (Bug#67207)
This commit is contained in:
Wilhelm H Kirschbaum 2023-11-15 20:13:02 +02:00 committed by Eli Zaretskii
parent 6aa70c236f
commit 09de967f6c

View file

@ -74,6 +74,13 @@
:safe 'integerp
:group 'elixir-ts)
(defcustom elixir-ts-mode-hook nil
"Hook run after entering `elixir-ts-mode'."
:type 'hook
:options '(eglot-ensure)
:group 'elixir-ts
:version "30.1")
(defface elixir-ts-font-comment-doc-identifier-face
'((t (:inherit font-lock-doc-face)))
"Face used for @comment.doc tags in Elixir files.")