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

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

1615 active golfers, 6558 entries

Solutions by @autra42:
32
#30 - Augustin Trancart / @autra42

09/06/2012 at 02:48PM

33
#>214 - Augustin Trancart / @autra42

09/06/2012 at 02:34PM

33
#>214 - Augustin Trancart / @autra42

09/06/2012 at 02:45PM

34
#>284 - Augustin Trancart / @autra42

09/06/2012 at 11:47AM

35
#>337 - Augustin Trancart / @autra42

09/06/2012 at 11:42AM

36
#>421 - Augustin Trancart / @autra42

09/05/2012 at 09:39AM

37
#>505 - Augustin Trancart / @autra42

09/05/2012 at 09:31AM

39
#>675 - Augustin Trancart / @autra42

09/05/2012 at 09:27AM

40
#>763 - Augustin Trancart / @autra42

09/05/2012 at 09:21AM

41
#>838 - Augustin Trancart / @autra42

08/31/2012 at 09:33AM

44
#>1041 - Augustin Trancart / @autra42

08/31/2012 at 09:26AM

53
#>1393 - Augustin Trancart / @autra42

02/28/2012 at 02:49PM

58
#>1468 - Augustin Trancart / @autra42

02/28/2012 at 02:56PM

71
#>1547 - Augustin Trancart / @autra42

02/28/2012 at 02:41PM