From: john muhl Date: Wed, 15 Nov 2023 18:45:18 +0000 (-0600) Subject: ; Add 'eglot-ensure' option to 'lua-ts-mode-hook' X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8979a54c7e226198c3449ac4b84048f285f5803d;p=emacs.git ; 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) (cherry picked from commit 6e5e4d6193999eef31a3c62a3de64910ccbd3ffb) --- diff --git a/lisp/progmodes/lua-ts-mode.el b/lisp/progmodes/lua-ts-mode.el index 0568e0d273c..fdc3f7a6d14 100644 --- a/lisp/progmodes/lua-ts-mode.el +++ b/lisp/progmodes/lua-ts-mode.el @@ -58,7 +58,8 @@ (defcustom lua-ts-mode-hook nil "Hook run after entering `lua-ts-mode'." :type 'hook - :options '(flymake-mode + :options '(eglot-ensure + flymake-mode hs-minor-mode outline-minor-mode) :version "30.1")