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

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

1713 active golfers, 7010 entries

Solutions by @pixelpurist:
32
#30 - pixelpurist / @pixelpurist

08/31/2012 at 08:22PM

33
#>218 - pixelpurist / @pixelpurist

08/31/2012 at 08:17PM

35
#>346 - pixelpurist / @pixelpurist

08/31/2012 at 08:14PM

37
#>523 - pixelpurist / @pixelpurist

08/31/2012 at 08:04PM

38
#>613 - pixelpurist / @pixelpurist

08/31/2012 at 07:57PM

38
#>613 - pixelpurist / @pixelpurist

08/31/2012 at 08:01PM

41
#>874 - pixelpurist / @pixelpurist

08/31/2012 at 07:54PM

42
#>960 - pixelpurist / @pixelpurist

08/31/2012 at 07:44PM

44
#>1094 - pixelpurist / @pixelpurist

08/31/2012 at 07:42PM

45
#>1139 - pixelpurist / @pixelpurist

08/29/2012 at 08:34PM

47
#>1244 - pixelpurist / @pixelpurist

08/29/2012 at 08:30PM

48
#>1310 - pixelpurist / @pixelpurist

08/29/2012 at 08:16PM

51
#>1403 - pixelpurist / @pixelpurist

08/29/2012 at 08:11PM