Andy Waite
Andy Waite
As mentioned in https://github.com/Shopify/ruby-lsp/pull/1827 Let's say we have a file `abc.rb` that we want to exclude from indexing. If we try exclude it in `index.yml` with: ``` excluded_patterns: - "abc.rb"...
### Motivation ### Implementation ### Automated Tests ### Manual Tests
https://github.com/Shopify/ruby-lsp/pull/1833/files > I know it's not related to this PR, but can we please update all of these to use regular requires? The `lib` directory gets inserted into the `$LOAD_PATH`...
For https://github.com/Shopify/ruby-lsp/pull/1833
### Motivation We want to have a general purpose configuration mechanism for Ruby LSP that not tied to a particular editor. Also closes #1295 (but with a slightly different approach)...
## Background https://github.com/Shopify/ruby-lsp/pull/698 wasn't caught because we were testing against a codebase which had already required `uri`. ## Approach To help prevent bugs such as https://github.com/Shopify/ruby-lsp/pull/698, we want to create...
This may help with performance. As mentioned here: https://github.com/vscode-neovim/vscode-neovim?tab=readme-ov-file#affinity
### Motivation Closes https://github.com/Shopify/ruby-lsp/issues/1466 ### Implementation Check for the presence of `bin/rails` as suggested by Rafael. ### Automated Tests Included ### Manual Tests It's slightly awkward as we need to...
### Description Currently we look for a dependency on the Rails gem, and if found, we assume a Rails app is present, and add "ruby-lsp-rails" to the custom bundle. But...
The behaviour is being added in https://github.com/Shopify/ruby-lsp/pull/1464 but we want to validate the approach before we publicize it.