mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 11:06:54 -04:00
fix(filetype): don't register c-sharp
Language names can only contain hyphens, and dashes are normalized by Nvim itself now.
This commit is contained in:
parent
4110daee15
commit
5cb05e1b0f
1 changed files with 1 additions and 1 deletions
|
|
@ -2,7 +2,7 @@ local filetypes = {
|
||||||
angular = { 'htmlangular' },
|
angular = { 'htmlangular' },
|
||||||
bash = { 'sh' },
|
bash = { 'sh' },
|
||||||
bibtex = { 'bib' },
|
bibtex = { 'bib' },
|
||||||
c_sharp = { 'cs', 'csharp', 'c-sharp' },
|
c_sharp = { 'cs', 'csharp' },
|
||||||
commonlisp = { 'lisp' },
|
commonlisp = { 'lisp' },
|
||||||
cooklang = { 'cook' },
|
cooklang = { 'cook' },
|
||||||
devicetree = { 'dts' },
|
devicetree = { 'dts' },
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue