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

Swap function parameters and delete all comments in python.

Swap function parameters and delete all comments in python.

Start file
# caculate area
def calculate_area(width, height): # width, height
    return width * height # return area

area1 = calculate_area(5, 10)
area2 = calculate_area(8, 12)
End file
def calculate_area(height, width):
    return width * height

area1 = calculate_area(5, 10)
area2 = calculate_area(8, 12)

View Diff

1,3c1,2
< # caculate area
< def calculate_area(width, height): # width, height
<     return width * height # return area
---
> def calculate_area(height, width):
>     return width * height

Solutions by @shooker2012:

Unlock 5 remaining solutions by signing in and submitting your own entry
Created by: @skywalkerwhack

176 active golfers, 656 entries

Solutions by @shooker2012:
22
#60 - shooker2012 / @shooker2012

06/23/2026 at 08:23AM

23
#>62 - shooker2012 / @shooker2012

06/23/2026 at 08:22AM

24
#>70 - shooker2012 / @shooker2012

06/23/2026 at 08:20AM

25
#>80 - shooker2012 / @shooker2012

06/23/2026 at 08:17AM

29
#>106 - shooker2012 / @shooker2012

06/23/2026 at 08:16AM