diff options
| author | Adelar da Silva Queiróz <adelarsq@gmail.com> | 2022-10-14 23:17:55 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-15 10:17:55 +0800 |
| commit | 39e29fb61c5ad010b5e06d27979b7163eca25aa2 (patch) | |
| tree | 13909650d1474ff338a94ebc24ccdca83d144342 /lua/lspconfig/server_configurations/fsautocomplete.lua | |
| parent | docs: update server_configurations.md (diff) | |
| download | nvim-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.lua | 2 |
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 = { |
