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

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

1766 active golfers, 7193 entries

Solutions by @scottley:
33
#214 - scottley / @scottley

02/07/2012 at 10:20AM

35
#>339 - scottley / @scottley

02/07/2012 at 10:15AM

35
#>339 - scottley / @scottley

02/07/2012 at 10:16AM

35
#>339 - scottley / @scottley

02/07/2012 at 10:18AM

36
#>434 - scottley / @scottley

02/07/2012 at 10:12AM

38
#>613 - scottley / @scottley

02/07/2012 at 10:05AM

40
#>802 - scottley / @scottley

02/07/2012 at 10:04AM

42
#>964 - scottley / @scottley

02/07/2012 at 09:54AM

44
#>1099 - scottley / @scottley

02/07/2012 at 09:49AM

48
#>1322 - scottley / @scottley

02/07/2012 at 09:44AM

50
#>1396 - scottley / @scottley

02/07/2012 at 09:36AM

50
#>1396 - scottley / @scottley

02/07/2012 at 09:42AM

52
#>1451 - scottley / @scottley

02/07/2012 at 09:29AM

66
#>1642 - scottley / @scottley

02/07/2012 at 09:26AM