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 @18kehops:

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

1706 active golfers, 6982 entries

Solutions by @18kehops:
32
#138 - Daniel Suh / @18kehops

02/03/2016 at 05:41AM

32
#>138 - Daniel Suh / @18kehops

02/03/2016 at 05:42AM

33
#>255 - Daniel Suh / @18kehops

02/03/2016 at 05:40AM

34
#>311 - Daniel Suh / @18kehops

02/03/2016 at 05:39AM

35
#>373 - Daniel Suh / @18kehops

02/03/2016 at 05:38AM

36
#>462 - Daniel Suh / @18kehops

02/03/2016 at 05:37AM

38
#>641 - Daniel Suh / @18kehops

02/03/2016 at 05:36AM

39
#>735 - Daniel Suh / @18kehops

02/03/2016 at 05:35AM

42
#>982 - Daniel Suh / @18kehops

02/03/2016 at 05:32AM