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

Reformat/Refactor a Golfer Class

A simple case of removing unneeded code and fixing broken indentation.

Start file
class Golfer
     def initialize; end # initialize
  def useless; end;
  
     def self.hello(a,b,c,d)
      puts "Hello #{a}, #{b}, #{c}, #{d}"
   end
end
End file
class Golfer
  def self.hello(*a)
    puts "Hello #{a.join(',')}"
  end
end

View Diff

2,7c2,4
<      def initialize; end # initialize
<   def useless; end;
<   
<      def self.hello(a,b,c,d)
<       puts "Hello #{a}, #{b}, #{c}, #{d}"
<    end
---
>   def self.hello(*a)
>     puts "Hello #{a.join(',')}"
>   end

Solutions by @WutongYujie:

Unlock 9 remaining solutions by signing in and submitting your own entry
Created by: @igrigorik

1615 active golfers, 6558 entries

Solutions by @WutongYujie:
32
#155 - 梧桐王子 / @WutongYujie

04/25/2017 at 03:53AM

32
#>158 - 梧桐王子 / @WutongYujie

12/13/2017 at 03:33PM

33
#>260 - 梧桐王子 / @WutongYujie

04/25/2017 at 03:52AM

34
#>308 - 梧桐王子 / @WutongYujie

04/25/2017 at 03:50AM

35
#>374 - 梧桐王子 / @WutongYujie

04/25/2017 at 03:44AM

36
#>452 - 梧桐王子 / @WutongYujie

04/25/2017 at 03:43AM

36
#>452 - 梧桐王子 / @WutongYujie

04/25/2017 at 03:50AM

39
#>718 - 梧桐王子 / @WutongYujie

04/25/2017 at 03:41AM

40
#>798 - 梧桐王子 / @WutongYujie

04/25/2017 at 03:31AM