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

Reformat a C golf submission

Take this C golf submission (for the "tiny but standards-compliant Hello World program" category, naturally), and turn it into formatted C code.

Start file
#include<stdio.h>
int main(void){puts("Hello world!");return 0;}
End file
#include <stdio.h>

int main(void)
{
    puts("Hello world!");
    return 0;
}

View Diff

--- hw.c	2010-12-28 21:01:54.000000000 -0800
+++ hw-indented.c	2010-12-28 21:04:56.000000000 -0800
@@ -1,2 +1,7 @@
-#include<stdio.h>
-int main(void){puts("Hello world!");return 0;}
+#include <stdio.h>
+
+int main(void)
+{
+    puts("Hello world!");
+    return 0;
+}

Solutions by @liberalbias:

Unlock 9 remaining solutions by signing in and submitting your own entry
Created by: @josh_triplett

199 active golfers, 552 entries

Solutions by @liberalbias:
25
#10 - Charles Gordon / @liberalbias

08/26/2012 at 05:13PM

26
#>36 - Charles Gordon / @liberalbias

08/26/2012 at 05:09PM

28
#>54 - Charles Gordon / @liberalbias

08/26/2012 at 01:59AM

29
#>73 - Charles Gordon / @liberalbias

08/26/2012 at 01:58AM

29
#>73 - Charles Gordon / @liberalbias

08/26/2012 at 05:07PM

31
#>96 - Charles Gordon / @liberalbias

08/26/2012 at 01:55AM

31
#>96 - Charles Gordon / @liberalbias

08/26/2012 at 01:58AM

32
#>103 - Charles Gordon / @liberalbias

08/26/2012 at 01:54AM

34
#>124 - Charles Gordon / @liberalbias

08/26/2012 at 01:47AM