ecomba / vim-ruby-refactoring

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

Support new Hash Syntax #52

Open IJustDev opened 2 years ago

IJustDev commented 2 years ago

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
}