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

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

66 active golfers, 173 entries

Solutions by @junfeng:
77
#16 - Junfeng / @junfeng

07/26/2011 at 09:00AM

78
#>16 - Junfeng / @junfeng

07/26/2011 at 08:45AM

115
#>39 - Junfeng / @junfeng

07/25/2011 at 12:55PM

143
#>45 - Junfeng / @junfeng

07/25/2011 at 12:47PM