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

1622 active golfers, 6608 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
#>417 - You-Siang Lin / @yslinnctu

11/24/2011 at 03:40AM

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

11/24/2011 at 03:28AM

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

11/24/2011 at 03:20AM

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

11/24/2011 at 03:18AM

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

11/24/2011 at 03:12AM

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

11/24/2011 at 03:07AM

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

11/24/2011 at 02:51AM

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

11/24/2011 at 02:09AM

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

11/24/2011 at 02:02AM

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

11/24/2011 at 01:32AM

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

11/24/2011 at 01:58AM

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

11/24/2011 at 01:27AM

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

11/24/2011 at 01:18AM