vim-ruby-refactoring
vim-ruby-refactoring copied to clipboard
Support new Hash Syntax
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 hash:
x = {
a: 0,
b: 0
}
instead of
x = {
:a => 0,
:b => 0
}