ecomba / vim-ruby-refactoring

Refactoring tool for Ruby in vim!
520 stars 52 forks source link

Method renaming #45

Open repomaa opened 11 years ago

repomaa commented 11 years ago

I'd really like to see method renaming across files. Say i have following

def foo arg1, arg2
    args = arg1 + arg2
    puts "bar #{args}"
end

and

foobar.foo 'foo', 'bar'

in some other file, then i could rename the method foo into bar and all occurences of that method get refractored.