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

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

1614 active golfers, 6557 entries

Solutions by @xieyh11:
32
#115 - xieyh11 / @xieyh11

02/17/2015 at 04:28AM

33
#>244 - xieyh11 / @xieyh11

02/17/2015 at 04:27AM

34
#>305 - xieyh11 / @xieyh11

02/17/2015 at 04:27AM

35
#>363 - xieyh11 / @xieyh11

02/17/2015 at 04:26AM

36
#>445 - xieyh11 / @xieyh11

02/17/2015 at 04:25AM

37
#>533 - xieyh11 / @xieyh11

02/17/2015 at 04:23AM

38
#>615 - xieyh11 / @xieyh11

02/17/2015 at 04:22AM

39
#>702 - xieyh11 / @xieyh11

02/17/2015 at 04:04AM

40
#>791 - xieyh11 / @xieyh11

02/17/2015 at 04:03AM

41
#>867 - xieyh11 / @xieyh11

02/17/2015 at 04:03AM

42
#>941 - xieyh11 / @xieyh11

02/17/2015 at 04:00AM

43
#>995 - xieyh11 / @xieyh11

02/17/2015 at 03:59AM

46
#>1155 - xieyh11 / @xieyh11

02/17/2015 at 03:55AM