Given a method like
class User
def foo_bar_baz
end
end
with the user.rb file open, searching for "bar" or "baz" in the local symbols search will reveal the method. But with a different file open, using the project symbol search won't find it unless you start typing the exact method name - i.e. "foo" will find it, as will "foo_bar", but not "foobar" or "bar_baz".
Given a method like
with the user.rb file open, searching for "bar" or "baz" in the local symbols search will reveal the method. But with a different file open, using the project symbol search won't find it unless you start typing the exact method name - i.e. "foo" will find it, as will "foo_bar", but not "foobar" or "bar_baz".