diff options
| author | altermo <107814000+altermo@users.noreply.github.com> | 2025-09-10 09:29:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-10 07:29:48 +0000 |
| commit | 7f8dd2e48bc47227d8138a5b5b1fb5a6d6e42237 (patch) | |
| tree | 52bd4e9a90f6d9b59b9c0c381021c2d2f9e6ad57 /plugin/filetypes.lua | |
| parent | feat(snakemake): update queries (#8106) (diff) | |
| download | nvim-treesitter-7f8dd2e48bc47227d8138a5b5b1fb5a6d6e42237.tar nvim-treesitter-7f8dd2e48bc47227d8138a5b5b1fb5a6d6e42237.tar.gz nvim-treesitter-7f8dd2e48bc47227d8138a5b5b1fb5a6d6e42237.tar.bz2 nvim-treesitter-7f8dd2e48bc47227d8138a5b5b1fb5a6d6e42237.tar.lz nvim-treesitter-7f8dd2e48bc47227d8138a5b5b1fb5a6d6e42237.tar.xz nvim-treesitter-7f8dd2e48bc47227d8138a5b5b1fb5a6d6e42237.tar.zst nvim-treesitter-7f8dd2e48bc47227d8138a5b5b1fb5a6d6e42237.zip | |
fix(filetypes): correct glimmer_* mappings (#8110)
Diffstat (limited to 'plugin/filetypes.lua')
| -rw-r--r-- | plugin/filetypes.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/filetypes.lua b/plugin/filetypes.lua index a7bb3bcc0..5e23adffd 100644 --- a/plugin/filetypes.lua +++ b/plugin/filetypes.lua @@ -24,7 +24,7 @@ local filetypes = { ini = { 'confini', 'dosini' }, janet_simple = { 'janet' }, javascript = { 'javascriptreact', 'ecma', 'ecmascript', 'jsx', 'js' }, - javascript_glimmer = { 'javascript.glimmer' }, + glimmer_javascript = { 'javascript.glimmer' }, latex = { 'tex' }, linkerscript = { 'ld' }, m68k = { 'asm68k' }, @@ -53,7 +53,7 @@ local filetypes = { tlaplus = { 'tla' }, tsx = { 'typescriptreact', 'typescript.tsx' }, typescript = { 'ts' }, - typescript_glimmer = { 'typescript.glimmer' }, + glimmer_typescript = { 'typescript.glimmer' }, typst = { 'typ' }, udev = { 'udevrules' }, uxntal = { 'tal', 'uxn' }, |
