Real Vim ninjas count every keystroke - do you?

Pick a challenge, fire up Vim, and show us what you got.

Changelog, Rules & FAQ, updates: @vimgolf, RSS.

Your VimGolf key: please sign in

$ gem install vimgolf
$ vimgolf setup
$ vimgolf put 57343555fd77ad227900df4a

Split line with dots

This line is too long, split it.

Start file
class VimGolf
  def split_me
    MyModel.first_method.second_method(arg).third_method(arg.method_one.method_two)
  end
end
End file
class VimGolf
  def split_me
    MyModel
      .first_method
      .second_method(arg)
      .third_method(arg.method_one.method_two)
  end
end

View Diff

3c3,6
<     MyModel.first_method.second_method(arg).third_method(arg.method_one.method_two)
---
>     MyModel
>       .first_method
>       .second_method(arg)
>       .third_method(arg.method_one.method_two)

Solutions by @byron_marohn:

Unlock 5 remaining solutions by signing in and submitting your own entry
Created by: @Benoit_Tgt

630 active golfers, 2125 entries

Solutions by @byron_marohn:
15
#56 - Byron Marohn / @byron_marohn

06/22/2016 at 10:53PM

16
#>186 - Byron Marohn / @byron_marohn

06/22/2016 at 10:48PM

17
#>249 - Byron Marohn / @byron_marohn

06/22/2016 at 10:47PM

18
#>277 - Byron Marohn / @byron_marohn

06/22/2016 at 10:43PM

19
#>324 - Byron Marohn / @byron_marohn

06/22/2016 at 10:38PM