diff options
| author | Lior Kummer <lior@sneakybugs.com> | 2022-07-22 17:28:12 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-22 07:28:12 -0700 |
| commit | 7be897aa039d55e358449b33da51986a5123e084 (patch) | |
| tree | 4bde3e68e695d9771b27592cb8df66ec7204bea5 /lua | |
| parent | fix(dartls): "dart" command not found on Windows #2013 (diff) | |
| download | nvim-lspconfig-7be897aa039d55e358449b33da51986a5123e084.tar nvim-lspconfig-7be897aa039d55e358449b33da51986a5123e084.tar.gz nvim-lspconfig-7be897aa039d55e358449b33da51986a5123e084.tar.bz2 nvim-lspconfig-7be897aa039d55e358449b33da51986a5123e084.tar.lz nvim-lspconfig-7be897aa039d55e358449b33da51986a5123e084.tar.xz nvim-lspconfig-7be897aa039d55e358449b33da51986a5123e084.tar.zst nvim-lspconfig-7be897aa039d55e358449b33da51986a5123e084.zip | |
fix(emmet-ls): missing supported filetypes #2017
For information on filetypes supported by emmet-ls, see:
https://github.com/aca/emmet-ls#supported-filetypes
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/emmet_ls.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lspconfig/server_configurations/emmet_ls.lua b/lua/lspconfig/server_configurations/emmet_ls.lua index 3750ae51..aa04f794 100644 --- a/lua/lspconfig/server_configurations/emmet_ls.lua +++ b/lua/lspconfig/server_configurations/emmet_ls.lua @@ -10,7 +10,7 @@ end return { default_config = { cmd = cmd, - filetypes = { 'html', 'css' }, + filetypes = { 'html', 'typescriptreact', 'javascriptreact', 'css', 'sass', 'scss', 'less' }, root_dir = util.find_git_ancestor, single_file_support = true, }, |
