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 @632143592Tao:

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

630 active golfers, 2125 entries

Solutions by @632143592Tao:
15
#49 - TaoChen / @632143592Tao

06/15/2016 at 05:58AM

16
#>184 - TaoChen / @632143592Tao

06/15/2016 at 05:49AM

17
#>249 - TaoChen / @632143592Tao

06/15/2016 at 05:48AM

18
#>275 - TaoChen / @632143592Tao

06/15/2016 at 05:47AM

20
#>368 - TaoChen / @632143592Tao

06/15/2016 at 05:44AM

21
#>395 - TaoChen / @632143592Tao

06/15/2016 at 05:20AM