diff options
| author | Access <ShootingStarDragons@protonmail.com> | 2022-10-14 13:10:35 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-14 13:10:35 +0800 |
| commit | 3f0d9ddefbe5db23c89695ac150c2aa05d28b003 (patch) | |
| tree | 704e2ea24a6ce0ea0da5b06c73bf2fdae67076be /lua | |
| parent | docs: update server_configurations.md (diff) | |
| download | nvim-lspconfig-3f0d9ddefbe5db23c89695ac150c2aa05d28b003.tar nvim-lspconfig-3f0d9ddefbe5db23c89695ac150c2aa05d28b003.tar.gz nvim-lspconfig-3f0d9ddefbe5db23c89695ac150c2aa05d28b003.tar.bz2 nvim-lspconfig-3f0d9ddefbe5db23c89695ac150c2aa05d28b003.tar.lz nvim-lspconfig-3f0d9ddefbe5db23c89695ac150c2aa05d28b003.tar.xz nvim-lspconfig-3f0d9ddefbe5db23c89695ac150c2aa05d28b003.tar.zst nvim-lspconfig-3f0d9ddefbe5db23c89695ac150c2aa05d28b003.zip | |
fix: update qml filetype same as treesitter (#2168)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/qml_lsp.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lspconfig/server_configurations/qml_lsp.lua b/lua/lspconfig/server_configurations/qml_lsp.lua index 832e9787..0f334a32 100644 --- a/lua/lspconfig/server_configurations/qml_lsp.lua +++ b/lua/lspconfig/server_configurations/qml_lsp.lua @@ -3,7 +3,7 @@ local util = require 'lspconfig.util' return { default_config = { cmd = { 'qml-lsp' }, - filetypes = { 'qml' }, + filetypes = { 'qmljs' }, root_dir = util.root_pattern '*.qml', }, docs = { |
