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

1706 active golfers, 6982 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
#>288 - Augustin Trancart / @autra42

09/06/2012 at 11:47AM

35
#>345 - Augustin Trancart / @autra42

09/06/2012 at 11:42AM

36
#>434 - Augustin Trancart / @autra42

09/05/2012 at 09:39AM

37
#>522 - Augustin Trancart / @autra42

09/05/2012 at 09:31AM

39
#>700 - Augustin Trancart / @autra42

09/05/2012 at 09:27AM

40
#>793 - Augustin Trancart / @autra42

09/05/2012 at 09:21AM

41
#>871 - Augustin Trancart / @autra42

08/31/2012 at 09:33AM

44
#>1091 - Augustin Trancart / @autra42

08/31/2012 at 09:26AM

53
#>1455 - Augustin Trancart / @autra42

02/28/2012 at 02:49PM

58
#>1541 - Augustin Trancart / @autra42

02/28/2012 at 02:56PM

71
#>1630 - Augustin Trancart / @autra42

02/28/2012 at 02:41PM