aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/server_configurations/fsautocomplete.lua
diff options
context:
space:
mode:
authorAdelar da Silva Queiróz <adelarsq@gmail.com>2022-10-14 23:17:55 -0300
committerGitHub <noreply@github.com>2022-10-15 10:17:55 +0800
commit39e29fb61c5ad010b5e06d27979b7163eca25aa2 (patch)
tree13909650d1474ff338a94ebc24ccdca83d144342 /lua/lspconfig/server_configurations/fsautocomplete.lua
parentdocs: update server_configurations.md (diff)
downloadnvim-lspconfig-39e29fb61c5ad010b5e06d27979b7163eca25aa2.tar
nvim-lspconfig-39e29fb61c5ad010b5e06d27979b7163eca25aa2.tar.gz
nvim-lspconfig-39e29fb61c5ad010b5e06d27979b7163eca25aa2.tar.bz2
nvim-lspconfig-39e29fb61c5ad010b5e06d27979b7163eca25aa2.tar.lz
nvim-lspconfig-39e29fb61c5ad010b5e06d27979b7163eca25aa2.tar.xz
nvim-lspconfig-39e29fb61c5ad010b5e06d27979b7163eca25aa2.tar.zst
nvim-lspconfig-39e29fb61c5ad010b5e06d27979b7163eca25aa2.zip
fix: remove --background-service-enabled and add --adaptive-lsp-server-enabled for F# (#2197)
Diffstat (limited to 'lua/lspconfig/server_configurations/fsautocomplete.lua')
-rw-r--r--lua/lspconfig/server_configurations/fsautocomplete.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lspconfig/server_configurations/fsautocomplete.lua b/lua/lspconfig/server_configurations/fsautocomplete.lua
index 1a1d4c54..4858c044 100644
--- a/lua/lspconfig/server_configurations/fsautocomplete.lua
+++ b/lua/lspconfig/server_configurations/fsautocomplete.lua
@@ -2,7 +2,7 @@ local util = require 'lspconfig.util'
return {
default_config = {
- cmd = { 'fsautocomplete', '--background-service-enabled' },
+ cmd = { 'fsautocomplete', '--adaptive-lsp-server-enabled' },
root_dir = util.root_pattern('*.sln', '*.fsproj', '.git'),
filetypes = { 'fsharp' },
init_options = {