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

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

630 active golfers, 2125 entries

Solutions by @jann6373:
15
#45 - jan sos / @jann6373

06/12/2016 at 01:29PM

16
#>184 - jan sos / @jann6373

06/12/2016 at 01:26PM

16
#>184 - jan sos / @jann6373

06/12/2016 at 01:28PM

17
#>249 - jan sos / @jann6373

06/12/2016 at 01:22PM

18
#>275 - jan sos / @jann6373

06/12/2016 at 01:19PM

20
#>367 - jan sos / @jann6373

06/12/2016 at 01:19PM

21
#>395 - jan sos / @jann6373

06/12/2016 at 01:17PM

22
#>444 - jan sos / @jann6373

06/12/2016 at 01:12PM