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

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

1766 active golfers, 7193 entries

Solutions by @tolver_a:
32
#147 - Alonzo / @tolver_a

07/23/2016 at 10:38PM

33
#>263 - Alonzo / @tolver_a

07/23/2016 at 10:29PM

34
#>314 - Alonzo / @tolver_a

07/23/2016 at 10:27PM

35
#>385 - Alonzo / @tolver_a

07/23/2016 at 10:14PM

36
#>469 - Alonzo / @tolver_a

07/23/2016 at 10:10PM

37
#>561 - Alonzo / @tolver_a

07/23/2016 at 07:42AM

38
#>650 - Alonzo / @tolver_a

07/23/2016 at 07:36AM

39
#>749 - Alonzo / @tolver_a

07/23/2016 at 07:32AM

42
#>999 - Alonzo / @tolver_a

07/23/2016 at 07:29AM

43
#>1057 - Alonzo / @tolver_a

07/23/2016 at 07:27AM

44
#>1133 - Alonzo / @tolver_a

07/23/2016 at 07:19AM

45
#>1177 - Alonzo / @tolver_a

07/23/2016 at 07:12AM

47
#>1289 - Alonzo / @tolver_a

07/23/2016 at 07:00AM