aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2026-03-07 11:09:03 +0100
committerChristian Clason <ch.clason+github@icloud.com>2026-03-07 11:15:38 +0100
commit5cb05e1b0fa3c469958a2b26f36b3fe930af221c (patch)
tree00ef24c87de94aad1eb2ab9a1ad94fce054438b6
parentbot(parsers): update blade, elixir, gitcommit, groovy, idl, javadoc, kotlin, ... (diff)
downloadnvim-treesitter-5cb05e1b0fa3c469958a2b26f36b3fe930af221c.tar
nvim-treesitter-5cb05e1b0fa3c469958a2b26f36b3fe930af221c.tar.gz
nvim-treesitter-5cb05e1b0fa3c469958a2b26f36b3fe930af221c.tar.bz2
nvim-treesitter-5cb05e1b0fa3c469958a2b26f36b3fe930af221c.tar.lz
nvim-treesitter-5cb05e1b0fa3c469958a2b26f36b3fe930af221c.tar.xz
nvim-treesitter-5cb05e1b0fa3c469958a2b26f36b3fe930af221c.tar.zst
nvim-treesitter-5cb05e1b0fa3c469958a2b26f36b3fe930af221c.zip
fix(filetype): don't register `c-sharp`HEADmain
Language names can only contain hyphens, and dashes are normalized by Nvim itself now.
-rw-r--r--plugin/filetypes.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/filetypes.lua b/plugin/filetypes.lua
index 7759c1f5c..f8fe0c287 100644
--- a/plugin/filetypes.lua
+++ b/plugin/filetypes.lua
@@ -2,7 +2,7 @@ local filetypes = {
angular = { 'htmlangular' },
bash = { 'sh' },
bibtex = { 'bib' },
- c_sharp = { 'cs', 'csharp', 'c-sharp' },
+ c_sharp = { 'cs', 'csharp' },
commonlisp = { 'lisp' },
cooklang = { 'cook' },
devicetree = { 'dts' },