Shopify / ruby-lsp-rails

A Ruby LSP addon for Rails
https://shopify.github.io/ruby-lsp-rails/
MIT License
518 stars 21 forks source link

Add document symbol support for `scope` #311

Closed andyw8 closed 2 months ago

andyw8 commented 3 months ago

We currently recognize a few common Rails DSL macros, such as associations, validations and callbacks.

Another useful one to support would scope. For example

scope :by_name, -> { order(:name) }

could be displayed in the symbol list as scope :by_name.