aboutsummaryrefslogtreecommitdiffstats
path: root/plugin
diff options
context:
space:
mode:
authorLuis Calle <53507599+TheLeoP@users.noreply.github.com>2025-06-23 13:15:08 -0500
committerGitHub <noreply@github.com>2025-06-23 18:15:08 +0000
commit231724189636fc31950f071bca0d2d35c228035b (patch)
tree736a2918c40ef4cae6cd98d4c5b9d6916cea7488 /plugin
parentfeat(powershell)!: update parser and queries (diff)
downloadnvim-treesitter-231724189636fc31950f071bca0d2d35c228035b.tar
nvim-treesitter-231724189636fc31950f071bca0d2d35c228035b.tar.gz
nvim-treesitter-231724189636fc31950f071bca0d2d35c228035b.tar.bz2
nvim-treesitter-231724189636fc31950f071bca0d2d35c228035b.tar.lz
nvim-treesitter-231724189636fc31950f071bca0d2d35c228035b.tar.xz
nvim-treesitter-231724189636fc31950f071bca0d2d35c228035b.tar.zst
nvim-treesitter-231724189636fc31950f071bca0d2d35c228035b.zip
fix: register `powershell` language for `ps1` filetype (#7965)
* chore: sort languages * fix: register `powershell` language for `ps1` filetype
Diffstat (limited to 'plugin')
-rw-r--r--plugin/filetypes.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugin/filetypes.lua b/plugin/filetypes.lua
index feb1194a6..fdfaefe30 100644
--- a/plugin/filetypes.lua
+++ b/plugin/filetypes.lua
@@ -24,8 +24,8 @@ local filetypes = {
janet_simple = { 'janet' },
javascript = { 'javascriptreact', 'ecma', 'ecmascript', 'jsx', 'js' },
javascript_glimmer = { 'javascript.glimmer' },
- linkerscript = { 'ld' },
latex = { 'tex' },
+ linkerscript = { 'ld' },
m68k = { 'asm68k' },
make = { 'automake' },
markdown = { 'pandoc' },
@@ -33,6 +33,7 @@ local filetypes = {
ocaml_interface = { 'ocamlinterface' },
perl = { 'pl' },
poe_filter = { 'poefilter' },
+ powershell = { 'ps1' },
properties = { 'jproperties' },
python = { 'py', 'gyp' },
qmljs = { 'qml' },