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

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

419 active golfers, 1056 entries

Solutions by @sgrif:
11
#22 - Sean Griffin / @sgrif

08/13/2012 at 02:49AM

12
#>170 - Sean Griffin / @sgrif

08/13/2012 at 02:48AM

13
#>287 - Sean Griffin / @sgrif

08/13/2012 at 02:47AM

14
#>370 - Sean Griffin / @sgrif

08/13/2012 at 02:47AM

15
#>389 - Sean Griffin / @sgrif

08/13/2012 at 02:46AM