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 54698da795f6da00020d85ed

Condensed Cases

Apple's new programming language, Swift, allows two style of case statements: 1) one Enum case on each line, or 2) multiple Enum cases on a single line. Convert the following from the first case (no pun intended) to the second type.

Start file
enum PlaybackRequestType {
    case Next
    case Previous
    case Play
    case Stop
}
End file
enum PlaybackRequestType {
    case Next, Previous, Play, Stop
}

View Diff

2,5c2
<     case Next
<     case Previous
<     case Play
<     case Stop
---
>     case Next, Previous, Play, Stop

Solutions by @ajh_17:

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

242 active golfers, 788 entries

Solutions by @ajh_17:
13
#66 - Akshay Hegde / @ajh_17

11/18/2014 at 03:23AM

14
#>98 - Akshay Hegde / @ajh_17

11/17/2014 at 06:12AM

14
#>98 - Akshay Hegde / @ajh_17

11/17/2014 at 06:13AM

14
#>98 - Akshay Hegde / @ajh_17

11/17/2014 at 06:22AM

15
#>147 - Akshay Hegde / @ajh_17

11/17/2014 at 06:12AM

18
#>203 - Akshay Hegde / @ajh_17

11/17/2014 at 06:08AM

18
#>203 - Akshay Hegde / @ajh_17

11/17/2014 at 06:09AM

20
#>217 - Akshay Hegde / @ajh_17

11/17/2014 at 06:00AM

22
#>224 - Akshay Hegde / @ajh_17

11/17/2014 at 05:58AM