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

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

404 active golfers, 1009 entries

Solutions by @justinknag:
13
#325 - Justin Knag / @justinknag

09/07/2014 at 12:14AM

14
#>368 - Justin Knag / @justinknag

09/07/2014 at 12:15AM

15
#>378 - Justin Knag / @justinknag

09/07/2014 at 12:12AM

16
#>384 - Justin Knag / @justinknag

09/07/2014 at 12:16AM

18
#>393 - Justin Knag / @justinknag

09/07/2014 at 12:16AM

46
#>404 - Justin Knag / @justinknag

09/07/2014 at 12:12AM