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

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

277 active golfers, 1104 entries

Solutions by @SusSquirrel:
19
#19 - Arya Kumar / @SusSquirrel

05/16/2021 at 03:18AM

20
#>85 - Arya Kumar / @SusSquirrel

05/16/2021 at 03:17AM

21
#>116 - Arya Kumar / @SusSquirrel

05/16/2021 at 03:13AM

23
#>123 - Arya Kumar / @SusSquirrel

05/16/2021 at 03:08AM

27
#>157 - Arya Kumar / @SusSquirrel

05/16/2021 at 03:06AM

28
#>164 - Arya Kumar / @SusSquirrel

05/16/2021 at 03:01AM

30
#>182 - Arya Kumar / @SusSquirrel

05/16/2021 at 02:55AM

32
#>202 - Arya Kumar / @SusSquirrel

05/16/2021 at 02:43AM

36
#>233 - Arya Kumar / @SusSquirrel

05/16/2021 at 02:33AM