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 6013804df3308e0009368f1c

Python dataclasses

Simple challenge to extract fields from a Python class

Start file
from dataclasses import dataclass

@dataclass
class Student:
    student_id
: str
    name
: str
    age
: int
    score
: float

fields
= ""
End file
from dataclasses import dataclass

@dataclass
class Student:
    student_id
: str
    name
: str
    age
: int
    score
: float

fields
= "student_id,name,age,score"

View Diff

10c10
< fields = ""
---
> fields = "student_id,name,age,score"

Solutions by @tylertucker202:

Unlock 5 remaining solutions by signing in and submitting your own entry
Created by: @__ngtrongkha

301 active golfers, 1215 entries

Solutions by @tylertucker202:
31
#206 - tylertucker202 / @tylertucker202

02/05/2021 at 03:03AM

34
#>248 - tylertucker202 / @tylertucker202

02/05/2021 at 02:57AM

44
#>275 - tylertucker202 / @tylertucker202

02/05/2021 at 02:53AM

55
#>285 - tylertucker202 / @tylertucker202

02/05/2021 at 02:43AM

167
#>299 - tylertucker202 / @tylertucker202

02/05/2021 at 02:34AM