vim-ruby-refactoring icon indicating copy to clipboard operation
vim-ruby-refactoring copied to clipboard

Support new Hash Syntax

Open IJustDev opened this issue 3 years ago • 0 comments

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
}

IJustDev avatar Apr 16 '22 10:04 IJustDev