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

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

1616 active golfers, 6560 entries

Solutions by @yslinnctu:
33
#200 - You-Siang Lin / @yslinnctu

11/24/2011 at 03:48AM

34
#>280 - You-Siang Lin / @yslinnctu

11/24/2011 at 03:44AM

36
#>415 - You-Siang Lin / @yslinnctu

11/24/2011 at 03:40AM

37
#>490 - You-Siang Lin / @yslinnctu

11/24/2011 at 03:28AM

38
#>579 - You-Siang Lin / @yslinnctu

11/24/2011 at 03:20AM

39
#>661 - You-Siang Lin / @yslinnctu

11/24/2011 at 03:18AM

40
#>758 - You-Siang Lin / @yslinnctu

11/24/2011 at 03:12AM

42
#>908 - You-Siang Lin / @yslinnctu

11/24/2011 at 03:07AM

46
#>1138 - You-Siang Lin / @yslinnctu

11/24/2011 at 02:51AM

49
#>1287 - You-Siang Lin / @yslinnctu

11/24/2011 at 02:09AM

52
#>1369 - You-Siang Lin / @yslinnctu

11/24/2011 at 02:02AM

53
#>1394 - You-Siang Lin / @yslinnctu

11/24/2011 at 01:32AM

56
#>1441 - You-Siang Lin / @yslinnctu

11/24/2011 at 01:58AM

57
#>1457 - You-Siang Lin / @yslinnctu

11/24/2011 at 01:27AM

61
#>1497 - You-Siang Lin / @yslinnctu

11/24/2011 at 01:18AM