ecomba / vim-ruby-refactoring

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

:RInlineTemp does not inline multiple variables in one line #23

Open mehowte opened 13 years ago

mehowte commented 13 years ago

To reproduce: :RInlineTemp executed on following code (cursor on any x)

x = 5
y = x and z = x

will produce

y = 5 and z = x

instead of

y = 5 and z = 5