From f8535c8c72051240d80794d8535560406f8d3a55 Mon Sep 17 00:00:00 2001 From: poz Date: Wed, 13 May 2026 01:57:01 +0200 Subject: [PATCH] languages/asm: filetypes: asm8300 -> asmh8300 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/neovim/neovim/blob/master/runtime/syntax/asmh8300.vim `:checkhealth` output: ``` - ⚠️ WARNING Unknown filetype 'asm8300' (Hint: filename extension != filetype). ``` --- docs/manual/release-notes/rl-0.9.md | 1 + modules/plugins/languages/asm.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/manual/release-notes/rl-0.9.md b/docs/manual/release-notes/rl-0.9.md index 5801370e..1ab4fdbd 100644 --- a/docs/manual/release-notes/rl-0.9.md +++ b/docs/manual/release-notes/rl-0.9.md @@ -476,6 +476,7 @@ https://github.com/gorbit99/codewindow.nvim - Add Arduino support with [arduino-language-server]. - Add GLSL support with [glsl_analyzer]. - Update fidget-nvim setupOpts and fix NvimTree issue. +- Fix asm-lsp's filetypes (`asm8300` -> `asmh8300`). [itscrystalline](https://github.com/itscrystalline): diff --git a/modules/plugins/languages/asm.nix b/modules/plugins/languages/asm.nix index 41b9f4bd..1a4fcd9b 100644 --- a/modules/plugins/languages/asm.nix +++ b/modules/plugins/languages/asm.nix @@ -57,7 +57,7 @@ in { vim.lsp = { presets = genAttrs cfg.lsp.servers (_: {enable = true;}); servers = genAttrs cfg.lsp.servers (_: { - filetypes = ["asm" "nasm" "masm" "vmasm" "fasm" "tasm" "tiasm" "asm68k" "asm8300"]; + filetypes = ["asm" "nasm" "masm" "vmasm" "fasm" "tasm" "tiasm" "asm68k" "asmh8300"]; }); }; })