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 @JulianWgs:

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

636 active golfers, 2156 entries

Solutions by @JulianWgs:
26
#551 - JulianW / @JulianWgs

10/27/2018 at 03:48PM

27
#>576 - JulianW / @JulianWgs

10/27/2018 at 03:47PM

28
#>582 - JulianW / @JulianWgs

10/27/2018 at 03:43PM

29
#>593 - JulianW / @JulianWgs

10/27/2018 at 12:48PM

33
#>609 - JulianW / @JulianWgs

10/27/2018 at 12:41PM

36
#>616 - JulianW / @JulianWgs

10/27/2018 at 12:38PM