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

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

1706 active golfers, 6982 entries

Solutions by @KarateSnoopy:
28
#1 - KarateSnoopy / @KarateSnoopy

08/12/2024 at 08:50AM

34
#>322 - KarateSnoopy / @KarateSnoopy

08/12/2024 at 08:39AM

37
#>583 - KarateSnoopy / @KarateSnoopy

08/12/2024 at 08:37AM

45
#>1172 - KarateSnoopy / @KarateSnoopy

08/12/2024 at 08:33AM

51
#>1422 - KarateSnoopy / @KarateSnoopy

08/12/2024 at 08:28AM

55
#>1506 - KarateSnoopy / @KarateSnoopy

08/12/2024 at 08:20AM

69
#>1620 - KarateSnoopy / @KarateSnoopy

08/12/2024 at 08:13AM