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

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

247 active golfers, 804 entries

Solutions by @robcarraretto:
12
#41 - Roberto Carraretto / @robcarraretto

02/21/2016 at 05:25PM

13
#>87 - Roberto Carraretto / @robcarraretto

02/21/2016 at 05:24PM

14
#>140 - Roberto Carraretto / @robcarraretto

02/21/2016 at 05:23PM

15
#>167 - Roberto Carraretto / @robcarraretto

02/21/2016 at 05:04PM

16
#>187 - Roberto Carraretto / @robcarraretto

02/21/2016 at 05:04PM

17
#>200 - Roberto Carraretto / @robcarraretto

02/21/2016 at 05:03PM

19
#>219 - Roberto Carraretto / @robcarraretto

02/21/2016 at 05:03PM

20
#>222 - Roberto Carraretto / @robcarraretto

02/21/2016 at 05:00PM