vim-ruby-refactoring
vim-ruby-refactoring copied to clipboard
Refactoring tool for Ruby in vim!
Thank you for creating this plugin it's really awesome! I am currently struggling with the newer ruby versions where the new hash syntax is the common way to define a...
I am trying out this plugin seems really cool, but currently the commands used in visual mode just doesn't work for me, an example, I want to rename a local...
Thanks for taking a stab at this refactoring plugin, @ecomba. When I have comments within the method talking about domain concepts, the temp variable's value gets inlined there as well:...
For some refactorings like renaming a variable it would be nice to be able to perform it simply by having the cursor on the variable in question, rather than visually...
Great plugin, thank you! Please note, the link to the VIM-plugin-page in the readme is labeled correctly as as http://www.vim.org/scripts/script.php?script_id=39 but href is different and points to the documentation.
I have this code: `Factory :user` which becomes `@let(:user) { Factory :user }` Why @let instead of let? Is this a known bug?
I'd really like to see method renaming across files. Say i have following ``` ruby def foo arg1, arg2 args = arg1 + arg2 puts "bar #{args}" end ``` and...
Here's the tab/indentation/spacing section of my .vimrc: se smartindent se sw=2 se ts=2 se expandtab With those settings, many cucumber scenarios fail. I've played around with no/other settings and can't...
Hi mate, Stu and I found this bug! Error detected while processing function : pattern not found To reproduce: Run rel, rel Cheers, - Paul
Inside the following method: ``` def validate(numbers) bar = 1 numbers.any? do |n| n < 0 end end ``` ,with numbers.any? do |n| n < 0 end When I do...