1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

; Add 'eglot-ensure' option to 'lua-ts-mode-hook'

* lisp/progmodes/lua-ts-mode.el (lua-ts-mode-hook): Add an option to
enable Eglot from the lua-ts-mode-hook.  (Bug#71736)
This commit is contained in:
john muhl 2023-11-15 12:45:18 -06:00 committed by Stefan Kangas
parent 58a2f36a8b
commit 6e5e4d6193

View file

@ -58,7 +58,8 @@
(defcustom lua-ts-mode-hook nil (defcustom lua-ts-mode-hook nil
"Hook run after entering `lua-ts-mode'." "Hook run after entering `lua-ts-mode'."
:type 'hook :type 'hook
:options '(flymake-mode :options '(eglot-ensure
flymake-mode
hs-minor-mode hs-minor-mode
outline-minor-mode) outline-minor-mode)
:version "30.1") :version "30.1")