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
The best way to learn is to practice. Below, you will find some of the solutions other golfers have entered. To unlock higher ranked solutions, submit your own entry which does as well or better than the solutions you can currently see - climb the ladder!
Check out these helpful resources to improve your Vim skills... Game on.
Unlock 244 remaining solutions by signing in and submitting your own entry