From abe41f1745545fd9529ca5455897509f880ad41a Mon Sep 17 00:00:00 2001 From: Jen-Chieh Shen Date: Tue, 19 Dec 2023 17:26:22 -0800 Subject: [PATCH] feat(lsp-asm.el): Support asm/gas mode (#4269) --- clients/lsp-asm.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/lsp-asm.el b/clients/lsp-asm.el index d312b265c8..3e91dec8bf 100644 --- a/clients/lsp-asm.el +++ b/clients/lsp-asm.el @@ -33,7 +33,7 @@ :package-version `(lsp-mode . "8.0.1")) (defcustom lsp-asm-active-modes - '(nasm-mode masm-mode fasm-mode) + '( asm-mode fasm-mode masm-mode nasm-mode gas-mode) "List of major mode that work with asm-lsp." :type 'list :group 'lsp-asm)