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

1616 active golfers, 6560 entries

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

08/31/2012 at 08:22PM

33
#>214 - pixelpurist / @pixelpurist

08/31/2012 at 08:17PM

35
#>337 - pixelpurist / @pixelpurist

08/31/2012 at 08:14PM

37
#>505 - pixelpurist / @pixelpurist

08/31/2012 at 08:04PM

38
#>589 - pixelpurist / @pixelpurist

08/31/2012 at 07:57PM

38
#>589 - pixelpurist / @pixelpurist

08/31/2012 at 08:01PM

41
#>838 - pixelpurist / @pixelpurist

08/31/2012 at 07:54PM

42
#>919 - pixelpurist / @pixelpurist

08/31/2012 at 07:44PM

44
#>1042 - pixelpurist / @pixelpurist

08/31/2012 at 07:42PM

45
#>1086 - pixelpurist / @pixelpurist

08/29/2012 at 08:34PM

47
#>1190 - pixelpurist / @pixelpurist

08/29/2012 at 08:30PM

48
#>1254 - pixelpurist / @pixelpurist

08/29/2012 at 08:16PM

51
#>1342 - pixelpurist / @pixelpurist

08/29/2012 at 08:11PM