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 9v00628a9b2f000000000220

Poorly indented Python comments

Fix the alignment of some Python comments as quickly as possible.

Start file
      # Working with enumerations in Python #

from enum import Enum

class Shake(Enum):
    VANILLA = 7
    CHOCOLATE = 4
    COOKIES = 9
    MINT = 3

print(type(Shake.MINT))   #   <enum 'Shake'> 

print(Shake.CHOCOLATE.name)               #    CHOCOLATE
print(Shake.CHOCOLATE.value)                   #     4

print(repr(Shake['COOKIES']))              #  <Shake.COOKIES: 9>

Animal = Enum('Animal', 'ANT BEE CAT DOG')

A = list(Animal); print(A)
# [<Animal.ANT: 1>, <Animal.BEE: 2>, <Animal.CAT: 3>, <Animal.DOG: 4>]
End file
      # Working with enumerations in Python #

from enum import Enum

class Shake(Enum):
    VANILLA = 7
    CHOCOLATE = 4
    COOKIES = 9
    MINT = 3

print(type(Shake.MINT))         # <enum 'Shake'> 

print(Shake.CHOCOLATE.name)     # CHOCOLATE
print(Shake.CHOCOLATE.value)    # 4

print(repr(Shake['COOKIES']))   # <Shake.COOKIES: 9>

Animal = Enum('Animal', 'ANT BEE CAT DOG')

A = list(Animal); print(A)
# [<Animal.ANT: 1>, <Animal.BEE: 2>, <Animal.CAT: 3>, <Animal.DOG: 4>]

View Diff

11c11
< print(type(Shake.MINT))   #   <enum 'Shake'> 
---
> print(type(Shake.MINT))         # <enum 'Shake'> 
13,14c13,14
< print(Shake.CHOCOLATE.name)               #    CHOCOLATE
< print(Shake.CHOCOLATE.value)                   #     4
---
> print(Shake.CHOCOLATE.name)     # CHOCOLATE
> print(Shake.CHOCOLATE.value)    # 4
16c16
< print(repr(Shake['COOKIES']))              #  <Shake.COOKIES: 9>
---
> print(repr(Shake['COOKIES']))   # <Shake.COOKIES: 9>

Solutions by @Shooker2012:

Unlock 12 remaining solutions by signing in and submitting your own entry
Created by: @JeanGeo20504212

202 active golfers, 1160 entries

Solutions by @Shooker2012:
16
#50 - ShookerAndBeta / @Shooker2012

07/08/2023 at 03:58AM

17
#>54 - ShookerAndBeta / @Shooker2012

07/08/2023 at 03:56AM

21
#>59 - ShookerAndBeta / @Shooker2012

06/03/2022 at 06:20PM

22
#>67 - ShookerAndBeta / @Shooker2012

06/03/2022 at 06:18PM

23
#>74 - ShookerAndBeta / @Shooker2012

06/03/2022 at 06:17PM

25
#>85 - ShookerAndBeta / @Shooker2012

06/03/2022 at 06:15PM

25
#>90 - ShookerAndBeta / @Shooker2012

07/08/2023 at 03:54AM

29
#>97 - ShookerAndBeta / @Shooker2012

06/03/2022 at 06:15PM

30
#>105 - ShookerAndBeta / @Shooker2012

06/03/2022 at 06:14PM

33
#>113 - ShookerAndBeta / @Shooker2012

06/03/2022 at 06:12PM

38
#>132 - ShookerAndBeta / @Shooker2012

07/08/2023 at 03:53AM

42
#>137 - ShookerAndBeta / @Shooker2012

06/03/2022 at 05:13PM