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 4fc9d767d3a0d4000100000e

Append semicolon after expressions

Some lines need the semicolon, some don't.

Start file
var foo

var bar = myCoolStuff()

callRemote()

foo = callTheWorld()
End file
var foo;

var bar = myCoolStuff();

callRemote();

foo = callTheWorld();

View Diff

1c1
< var foo
---
> var foo;
3c3
< var bar = myCoolStuff()
---
> var bar = myCoolStuff();
5c5
< callRemote()
---
> callRemote();
7c7
< foo = callTheWorld()
---
> foo = callTheWorld();

Solutions by @AlexanderHeatl2:

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

403 active golfers, 1005 entries

Solutions by @AlexanderHeatl2:
11
#132 - Alex / @AlexanderHeatl2

07/09/2022 at 04:45PM

12
#>253 - Alex / @AlexanderHeatl2

07/09/2022 at 04:45PM

13
#>346 - Alex / @AlexanderHeatl2

07/09/2022 at 04:44PM

14
#>371 - Alex / @AlexanderHeatl2

07/09/2022 at 04:44PM

15
#>378 - Alex / @AlexanderHeatl2

07/09/2022 at 04:43PM