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

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

629 active golfers, 2124 entries

Solutions by @Scottaino:
22
#466 - Scott Smith / @Scottaino

01/03/2020 at 06:11PM

25
#>530 - Scott Smith / @Scottaino

01/03/2020 at 06:08PM

26
#>557 - Scott Smith / @Scottaino

01/03/2020 at 06:02PM

27
#>576 - Scott Smith / @Scottaino

01/03/2020 at 06:00PM

36
#>611 - Scott Smith / @Scottaino

01/03/2020 at 05:56PM

37
#>614 - Scott Smith / @Scottaino

01/03/2020 at 05:53PM

45
#>616 - Scott Smith / @Scottaino

01/03/2020 at 05:52PM