aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorGithub Actions <actions@github>2020-09-07 18:50:30 +0000
committerGithub Actions <actions@github>2020-09-07 18:50:30 +0000
commit60133c47e0fd82556d7ca092546ebfa8d047466e (patch)
tree664fef0f88242e689c23c13179c6f0161e892749 /README.md
parenthls: add config for haskell language server #336 (diff)
downloadnvim-lspconfig-60133c47e0fd82556d7ca092546ebfa8d047466e.tar
nvim-lspconfig-60133c47e0fd82556d7ca092546ebfa8d047466e.tar.gz
nvim-lspconfig-60133c47e0fd82556d7ca092546ebfa8d047466e.tar.bz2
nvim-lspconfig-60133c47e0fd82556d7ca092546ebfa8d047466e.tar.lz
nvim-lspconfig-60133c47e0fd82556d7ca092546ebfa8d047466e.tar.xz
nvim-lspconfig-60133c47e0fd82556d7ca092546ebfa8d047466e.tar.zst
nvim-lspconfig-60133c47e0fd82556d7ca092546ebfa8d047466e.zip
[docgen] Update README.md
skip-checks: true
Diffstat (limited to 'README.md')
-rw-r--r--README.md25
1 files changed, 24 insertions, 1 deletions
diff --git a/README.md b/README.md
index 4e809dca..f34618a8 100644
--- a/README.md
+++ b/README.md
@@ -264,6 +264,7 @@ that config.
- [ghcide](#ghcide)
- [gopls](#gopls)
- [hie](#hie)
+- [hls](#hls)
- [html](#html)
- [intelephense](#intelephense)
- [jdtls](#jdtls)
@@ -2101,6 +2102,24 @@ require'nvim_lsp'.hie.setup{}
root_dir = root_pattern("stack.yaml", "package.yaml", ".git")
```
+## hls
+
+https://github.com/haskell/haskell-language-server
+
+Haskell Language Server
+
+
+```lua
+require'nvim_lsp'.hls.setup{}
+
+ Commands:
+
+ Default Values:
+ cmd = { "haskell-language-server-wrapper", "--lsp" }
+ filetypes = { "haskell", "lhaskell" }
+ root_dir = root_pattern("*.cabal", "stack.yaml", "cabal.project", "package.yaml", "hie.yaml")
+```
+
## html
https://github.com/vscode-langservers/vscode-html-languageserver-bin
@@ -3041,7 +3060,7 @@ require'nvim_lsp'.omnisharp.setup{}
Commands:
Default Values:
- cmd = { "/home/runner/.cache/nvim/nvim_lsp/omnisharp/run", "--languageserver", "--hostPID", "2652" }
+ cmd = { "/home/runner/.cache/nvim/nvim_lsp/omnisharp/run", "--languageserver", "--hostPID", "2801" }
filetypes = { "cs", "vb" }
init_options = {}
on_new_config = <function 1>
@@ -5070,6 +5089,10 @@ This server accepts configuration via the `settings` key.
Validate vue\-html in \<template\> using eslint\-plugin\-vue
+- **`vetur.validation.templateProps`**: `boolean`
+
+ Validate props usage in \<template\> region\. Show error\/warning for not passing declared props to child components\.
+
</details>
```lua