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

1708 active golfers, 6984 entries

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

07/23/2016 at 10:38PM

33
#>262 - Alonzo / @tolver_a

07/23/2016 at 10:29PM

34
#>312 - Alonzo / @tolver_a

07/23/2016 at 10:27PM

35
#>381 - Alonzo / @tolver_a

07/23/2016 at 10:14PM

36
#>464 - Alonzo / @tolver_a

07/23/2016 at 10:10PM

37
#>555 - Alonzo / @tolver_a

07/23/2016 at 07:42AM

38
#>642 - Alonzo / @tolver_a

07/23/2016 at 07:36AM

39
#>737 - Alonzo / @tolver_a

07/23/2016 at 07:32AM

42
#>985 - Alonzo / @tolver_a

07/23/2016 at 07:29AM

43
#>1043 - Alonzo / @tolver_a

07/23/2016 at 07:27AM

44
#>1117 - Alonzo / @tolver_a

07/23/2016 at 07:19AM

45
#>1160 - Alonzo / @tolver_a

07/23/2016 at 07:12AM

47
#>1270 - Alonzo / @tolver_a

07/23/2016 at 07:00AM