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

CSV to JSON

A search for shortest vimissh way to convert CSV to JSON.

Start file
Year,Make,Model,Length
1997,Ford,E350,2.34
2000,Mercury,Cougar,2.38
End file
[
	{
		"Year": "1997",
		"Make": "Ford",
		"Model": "E350",
		"Length": "2.34"
	},
	{
		"Year": "2000",
		"Make": "Mercury",
		"Model": "Cougar",
		"Length": "2.38"
	}
]

View Diff

1,3c1,14
< Year,Make,Model,Length
< 1997,Ford,E350,2.34
< 2000,Mercury,Cougar,2.38
---
> [
> 	{
> 		"Year": "1997",
> 		"Make": "Ford",
> 		"Model": "E350",
> 		"Length": "2.34"
> 	},
> 	{
> 		"Year": "2000",
> 		"Make": "Mercury",
> 		"Model": "Cougar",
> 		"Length": "2.38"
> 	}
> ]

Solutions by @karel1980:

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

65 active golfers, 172 entries

Solutions by @karel1980:
93
#25 - Karel Vervaeke / @karel1980

01/03/2011 at 10:20AM

96
#>27 - Karel Vervaeke / @karel1980

01/03/2011 at 09:50AM

105
#>32 - Karel Vervaeke / @karel1980

01/03/2011 at 07:41AM

138
#>44 - Karel Vervaeke / @karel1980

01/01/2011 at 01:54PM

190
#>59 - Karel Vervaeke / @karel1980

01/01/2011 at 02:10PM