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

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

235 active golfers, 956 entries

Solutions by @JimsLo:
30
#150 - LO CHI FUNG / @JimsLo

05/29/2026 at 04:08AM

30
#>150 - LO CHI FUNG / @JimsLo

06/01/2026 at 06:47AM

35
#>192 - LO CHI FUNG / @JimsLo

05/29/2026 at 02:52AM

35
#>192 - LO CHI FUNG / @JimsLo

06/01/2026 at 06:45AM

38
#>206 - LO CHI FUNG / @JimsLo

06/01/2026 at 06:45AM

48
#>221 - LO CHI FUNG / @JimsLo

05/29/2026 at 02:40AM

84
#>231 - LO CHI FUNG / @JimsLo

05/28/2026 at 06:38AM