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

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

284 active golfers, 1136 entries

Solutions by @warwickrulez:
20
#86 - warwickrulez / @warwickrulez

03/30/2021 at 03:01PM

21
#>119 - warwickrulez / @warwickrulez

03/30/2021 at 03:00PM

24
#>134 - warwickrulez / @warwickrulez

03/30/2021 at 02:58PM

25
#>145 - warwickrulez / @warwickrulez

03/30/2021 at 02:38PM

29
#>173 - warwickrulez / @warwickrulez

03/30/2021 at 02:27PM

32
#>206 - warwickrulez / @warwickrulez

03/30/2021 at 01:17PM

32
#>206 - warwickrulez / @warwickrulez

03/30/2021 at 01:19PM

39
#>251 - warwickrulez / @warwickrulez

03/30/2021 at 12:42PM

39
#>251 - warwickrulez / @warwickrulez

03/30/2021 at 12:46PM

47
#>261 - warwickrulez / @warwickrulez

03/30/2021 at 12:41PM

53
#>267 - warwickrulez / @warwickrulez

03/30/2021 at 12:40PM

55
#>268 - warwickrulez / @warwickrulez

03/30/2021 at 12:35PM