diff options
| author | Brandon Conway <[email protected]> | 2021-07-04 07:34:53 -0700 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2021-07-04 10:34:53 -0400 | 
| commit | a291b0597a7c9f76cfdb0dc4be9833ed6c8778e8 (patch) | |
| tree | 4d4072adeea5469a7d90350d4b949366f6fbbe9c | |
| parent | c8c29aa03cf784fdb8e3c0da94c87f8c073b7ddd (diff) | |
Solargraph uses stdio instead of --stdio (#642)
You can see this in the [default config](https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/solargraph.lua).
| -rw-r--r-- | ftplugin/ruby.lua | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ftplugin/ruby.lua b/ftplugin/ruby.lua index f46a71f8..4f2c20f8 100644 --- a/ftplugin/ruby.lua +++ b/ftplugin/ruby.lua @@ -1,6 +1,6 @@  -- If you are using rvm, make sure to change below configuration  require'lspconfig'.solargraph.setup { -    cmd = {DATA_PATH .. "/lspinstall/ruby/solargraph/solargraph", "--stdio"}, +    cmd = {DATA_PATH .. "/lspinstall/ruby/solargraph/solargraph", "stdio"},      on_attach = require'lsp'.common_on_attach,      handlers = {          ["textDocument/publishDiagnostics"] = vim.lsp.with( | 
