In Ruby, namespaces are separated by ::
(e.g.: Services::ProductService
), and it's good practice to keep the file system structure consistent (e.g. above: services/product_service.rb
.
When looking up a class file using cmd+T
, it would be very handy if ::
were excluded by the search, or even better, considered like folder delimiters /
, so that pasting Services::ProductService
in the search could match services/product_service.rb
.
Is this possible?