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 6019f1c4642668000cee11e8

Generate a very basic Python constructor

I actually needed to do this myself, so I look forward to learning how.

Start file
def __init__(self, x, y, z, rotation, color, bounciness, walking_speed, running_speed, health, defense, age, type1, type2):
End file
def __init__(self, x, y, z, rotation, color, bounciness, walking_speed, running_speed, health, defense, age, type1, type2):
   
self.x = x
   
self.y = y
   
self.z = z
   
self.rotation = rotation
   
self.color = color
   
self.bounciness = bounciness
   
self.walking_speed = walking_speed
   
self.running_speed = running_speed
   
self.health = health
   
self.defense = defense
   
self.age = age
   
self.type1 = type1
   
self.type2 = type2

View Diff

1a2,14
>     self.x = x
>     self.y = y
>     self.z = z
>     self.rotation = rotation
>     self.color = color
>     self.bounciness = bounciness
>     self.walking_speed = walking_speed
>     self.running_speed = running_speed
>     self.health = health
>     self.defense = defense
>     self.age = age
>     self.type1 = type1
>     self.type2 = type2

Solutions by @happylilmexican:

Unlock 10 remaining solutions by signing in and submitting your own entry
Created by: @BiddulphCaleb

98 active golfers, 316 entries

Solutions by @happylilmexican:
38
#18 - José Medrano / @happylilmexican

12/09/2021 at 08:29PM

39
#>26 - José Medrano / @happylilmexican

12/09/2021 at 08:20PM

42
#>28 - José Medrano / @happylilmexican

12/09/2021 at 08:06PM

44
#>33 - José Medrano / @happylilmexican

12/09/2021 at 07:57PM

47
#>42 - José Medrano / @happylilmexican

12/09/2021 at 07:44PM

51
#>47 - José Medrano / @happylilmexican

12/09/2021 at 07:10PM

57
#>58 - José Medrano / @happylilmexican

12/09/2021 at 04:30PM

60
#>64 - José Medrano / @happylilmexican

12/08/2021 at 07:52PM

62
#>67 - José Medrano / @happylilmexican

12/08/2021 at 07:48PM

62
#>67 - José Medrano / @happylilmexican

12/08/2021 at 09:48PM