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

Refactor typescript arrow function type

Make arrow function type less verbose and easier to read

Start file
export const playground: (
 
object?: Partial<PlaygroundSection>,
) => PlaygroundSection = config =>
  baseSection
({
    type
: SectionType.Playground,
   
...config,
 
});
End file
export const playground = (
  config
?: Partial<PlaygroundSection>,
): PlaygroundSection =>
  baseSection
({
    type
: SectionType.Playground,
   
...config,
 
});

View Diff

1,3c1,3
< export const playground: (
<   object?: Partial<PlaygroundSection>,
< ) => PlaygroundSection = config =>
---
> export const playground = (
>   config?: Partial<PlaygroundSection>,
> ): PlaygroundSection =>

Solutions by @37fatos:

Unlock 8 remaining solutions by signing in and submitting your own entry
Created by: @argshook

71 active golfers, 323 entries

Solutions by @37fatos:
20
#18 - A A A / @37fatos

01/21/2021 at 12:57AM

21
#>31 - A A A / @37fatos

01/21/2021 at 12:54AM

22
#>39 - A A A / @37fatos

01/21/2021 at 12:53AM

23
#>42 - A A A / @37fatos

01/21/2021 at 12:49AM

25
#>43 - A A A / @37fatos

01/21/2021 at 12:44AM

25
#>43 - A A A / @37fatos

01/21/2021 at 12:46AM

26
#>46 - A A A / @37fatos

01/21/2021 at 12:45AM

31
#>61 - A A A / @37fatos

01/21/2021 at 12:44AM