Fred Snyder
Fred Snyder
Great, thanks. In the meantime, the current plugin should still work with gem versions < 0.21.0. (In one case that still used `solargraph server`, I had to revert back to...
The problem appears to be related to extensions, in this case the `rubocop-performance` extension. I got the same errors despite adding `rubocop-performance` to the Gemfile and `require: rubocop-performance` to the...
Solargraph usually works on untitled files as long as it knows the language mode, e.g., if you set it to Ruby with the `Change Language Mode` command. There's at least...
Thanks for the information. I'll work on this bug for an upcoming release. I hope to release the LSP version by the end of this month, or possibly the first...
There appears to be a limitation (or a bug) in either VSCode or the language client that prevents them from updating the language server when you change an unsaved file's...
The `exclude` setting in .solargraph.yml should either contain a list of values or be deleted altogether. An empty array is acceptable: ``` exclude: [] ``` I'll look into a more...
Thanks! I've been pondering snippet options. It doesn't seem like a good fit for the language server, as most editors (VS Code included) treat snippets as a discrete feature; but...
It looks to me like Ruby's `Dir.home` relies on a folder that's at least partially determined by the HOMEDRIVE variable. I'm not sure of a good workaround or a way...
Gotcha. I haven't been able to reproduce that particular error with Ruby 2.5.3 on Windows 10. I'll try again with Ruby 2.6.3. Incidentally, gem version 0.32.4 got released yesterday. I...
What are your `editor.formatOnSave` and `editor.formatOnSaveMode` options? If you use format on save for other languages, you can disable it for Ruby only in `settings.json`, e.g.: ```json "[ruby]": { "editor.formatOnSave":...