diff options
| author | github-actions <github-actions@github.com> | 2022-01-18 18:05:17 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2022-01-18 18:05:17 +0000 |
| commit | 37edd90592ef0e4b603634e449ce28b053d9bdd0 (patch) | |
| tree | c06e47542204f7115daa2f4fe679b7bb77d69d94 | |
| parent | fix(lemminx): add XSL and XSLT to filetypes (#1667) (diff) | |
| download | nvim-lspconfig-37edd90592ef0e4b603634e449ce28b053d9bdd0.tar nvim-lspconfig-37edd90592ef0e4b603634e449ce28b053d9bdd0.tar.gz nvim-lspconfig-37edd90592ef0e4b603634e449ce28b053d9bdd0.tar.bz2 nvim-lspconfig-37edd90592ef0e4b603634e449ce28b053d9bdd0.tar.lz nvim-lspconfig-37edd90592ef0e4b603634e449ce28b053d9bdd0.tar.xz nvim-lspconfig-37edd90592ef0e4b603634e449ce28b053d9bdd0.tar.zst nvim-lspconfig-37edd90592ef0e4b603634e449ce28b053d9bdd0.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 11 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 11 |
2 files changed, 20 insertions, 2 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 553db4eb..24261713 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -3068,6 +3068,15 @@ This server accepts configuration via the `settings` key. Defines allowed\/disallowed SHA\-256 checksums of Gradle Wrappers +- **`java.jdt.ls.java.home`**: `string|null` + + Default: `vim.NIL` + + Specifies the folder path to the JDK \(11 or more recent\) used to launch the Java Language Server\. This setting will replace the Java extension\'s embedded JRE to start the Java Language Server\. + + On Windows\, backslashes must be escaped\, i\.e\. + \"java\.jdt\.ls\.java\.home\"\:\"C\:\\\\Program Files\\\\Java\\\\jdk11\.0\_8\" + - **`java.jdt.ls.vmargs`**: `string|null` Default: `"-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m"` @@ -3979,7 +3988,7 @@ require'lspconfig'.lemminx.setup{} Default Values: cmd = { "lemminx" } - filetypes = { "xml", "xsd", "svg" } + filetypes = { "xml", "xsd", "xsl", "xslt", "svg" } root_dir = util.find_git_ancestor single_file_support = true ``` diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 553db4eb..24261713 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -3068,6 +3068,15 @@ This server accepts configuration via the `settings` key. Defines allowed\/disallowed SHA\-256 checksums of Gradle Wrappers +- **`java.jdt.ls.java.home`**: `string|null` + + Default: `vim.NIL` + + Specifies the folder path to the JDK \(11 or more recent\) used to launch the Java Language Server\. This setting will replace the Java extension\'s embedded JRE to start the Java Language Server\. + + On Windows\, backslashes must be escaped\, i\.e\. + \"java\.jdt\.ls\.java\.home\"\:\"C\:\\\\Program Files\\\\Java\\\\jdk11\.0\_8\" + - **`java.jdt.ls.vmargs`**: `string|null` Default: `"-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m"` @@ -3979,7 +3988,7 @@ require'lspconfig'.lemminx.setup{} Default Values: cmd = { "lemminx" } - filetypes = { "xml", "xsd", "svg" } + filetypes = { "xml", "xsd", "xsl", "xslt", "svg" } root_dir = util.find_git_ancestor single_file_support = true ``` |
