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

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

1761 active golfers, 7173 entries

Solutions by @xieyh11:
32
#116 - xieyh11 / @xieyh11

02/17/2015 at 04:28AM

33
#>248 - xieyh11 / @xieyh11

02/17/2015 at 04:27AM

34
#>310 - xieyh11 / @xieyh11

02/17/2015 at 04:27AM

35
#>374 - xieyh11 / @xieyh11

02/17/2015 at 04:26AM

36
#>462 - xieyh11 / @xieyh11

02/17/2015 at 04:25AM

37
#>555 - xieyh11 / @xieyh11

02/17/2015 at 04:23AM

38
#>644 - xieyh11 / @xieyh11

02/17/2015 at 04:22AM

39
#>738 - xieyh11 / @xieyh11

02/17/2015 at 04:04AM

40
#>833 - xieyh11 / @xieyh11

02/17/2015 at 04:03AM

41
#>912 - xieyh11 / @xieyh11

02/17/2015 at 04:03AM

42
#>991 - xieyh11 / @xieyh11

02/17/2015 at 04:00AM

43
#>1050 - xieyh11 / @xieyh11

02/17/2015 at 03:59AM

46
#>1221 - xieyh11 / @xieyh11

02/17/2015 at 03:55AM