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 4d28637c4bcd032f1c00003d

Reformat long lines

Rearrange this ruby method call to put each parameter on its own line. Could become a useful macro.

Start file
def default_i18n_subject
  mailer_scope = self.class.mailer_name.gsub('/', '.')
  I18n.t(:subject, :scope => [mailer_scope, action_name], :default => action_name.humanize)
end
End file
def default_i18n_subject
  mailer_scope = self.class.mailer_name.gsub('/', '.')
  I18n.t(:subject,
         :scope => [mailer_scope, action_name],
         :default => action_name.humanize)
end

View Diff

3c3,5
<   I18n.t(:subject, :scope => [mailer_scope, action_name], :default => action_name.humanize)
---
>   I18n.t(:subject,
>          :scope => [mailer_scope, action_name],
>          :default => action_name.humanize)

Solutions by @anton_davydov:

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

130 active golfers, 341 entries

Solutions by @anton_davydov:
15
#20 - Anton Davydov / @anton_davydov

01/05/2014 at 12:01PM

17
#>64 - Anton Davydov / @anton_davydov

01/05/2014 at 12:00PM

19
#>78 - Anton Davydov / @anton_davydov

01/05/2014 at 11:57AM

21
#>103 - Anton Davydov / @anton_davydov

01/05/2014 at 11:50AM

24
#>126 - Anton Davydov / @anton_davydov

01/05/2014 at 11:48AM