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

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

242 active golfers, 788 entries

Solutions by @jackliusr:
12
#39 - jackliusr / @jackliusr

01/14/2016 at 04:45AM

12
#>39 - jackliusr / @jackliusr

01/14/2016 at 04:47AM

13
#>85 - jackliusr / @jackliusr

01/14/2016 at 04:44AM

14
#>137 - jackliusr / @jackliusr

01/14/2016 at 04:42AM

15
#>164 - jackliusr / @jackliusr

01/14/2016 at 03:28AM

16
#>182 - jackliusr / @jackliusr

01/14/2016 at 03:27AM

17
#>197 - jackliusr / @jackliusr

01/14/2016 at 03:14AM

19
#>216 - jackliusr / @jackliusr

01/14/2016 at 02:01AM

21
#>222 - jackliusr / @jackliusr

01/14/2016 at 01:55AM

24
#>230 - jackliusr / @jackliusr

01/14/2016 at 01:54AM

25
#>230 - jackliusr / @jackliusr

01/14/2016 at 01:53AM