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 5a33022f2de3f1021300000d

Array propagate

Complete the array with the keys as part of the value

Start file
$arr = [
   
'one_option' => '',
   
'other' => '',
   
'created_at' => '',
   
'updated_at' => ''
]
End file
$arr = [
   
'one_option' => $row['one_option'],
   
'other' => $row['other'],
   
'created_at' => $row['created_at'],
   
'updated_at' => $row['updated_at']
]

View Diff

2,6c2,6
<     'one_option' => '',
<     'other' => '',
<     'created_at' => '',
<     'updated_at' => ''
< ]
\ No newline at end of file
---
>     'one_option' => $row['one_option'],
>     'other' => $row['other'],
>     'created_at' => $row['created_at'],
>     'updated_at' => $row['updated_at']
> ]

Solutions by @yancy_dong:

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

119 active golfers, 338 entries

Solutions by @yancy_dong:
24
#45 - yancy / @yancy_dong

09/29/2021 at 07:31AM

25
#>52 - yancy / @yancy_dong

09/29/2021 at 07:30AM

26
#>58 - yancy / @yancy_dong

09/29/2021 at 07:29AM

28
#>80 - yancy / @yancy_dong

09/29/2021 at 07:28AM

31
#>92 - yancy / @yancy_dong

09/29/2021 at 07:17AM