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

1762 active golfers, 7178 entries

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

09/06/2012 at 02:48PM

33
#>218 - Augustin Trancart / @autra42

09/06/2012 at 02:34PM

33
#>218 - Augustin Trancart / @autra42

09/06/2012 at 02:45PM

34
#>289 - Augustin Trancart / @autra42

09/06/2012 at 11:47AM

35
#>348 - Augustin Trancart / @autra42

09/06/2012 at 11:42AM

36
#>438 - Augustin Trancart / @autra42

09/05/2012 at 09:39AM

37
#>527 - Augustin Trancart / @autra42

09/05/2012 at 09:31AM

39
#>711 - Augustin Trancart / @autra42

09/05/2012 at 09:27AM

40
#>805 - Augustin Trancart / @autra42

09/05/2012 at 09:21AM

41
#>883 - Augustin Trancart / @autra42

08/31/2012 at 09:33AM

44
#>1106 - Augustin Trancart / @autra42

08/31/2012 at 09:26AM

53
#>1479 - Augustin Trancart / @autra42

02/28/2012 at 02:49PM

58
#>1571 - Augustin Trancart / @autra42

02/28/2012 at 02:56PM

71
#>1676 - Augustin Trancart / @autra42

02/28/2012 at 02:41PM