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 4fdb12a383de630001000005

Aligning function arguments to match a specific coding style

Most projects have specific coding style guidelines. In this case, the argument list must be broken into a new line for each argument, with the argument names right aligned, taking into account pointers.

Start file
void
clutter_layout_manager_get_preferred_width (ClutterActor *actor,
                                            ClutterContainer *container,
                                            gfloat for_width,
                                            gfloat *min_width_p,
                                            gfloat *natural_width_p)
{
}
End file
void
clutter_layout_manager_get_preferred_width (ClutterActor     *actor,
                                            ClutterContainer *container,
                                            gfloat            for_width,
                                            gfloat           *min_width_p,
                                            gfloat           *natural_width_p)
{
}

View Diff

2c2
< clutter_layout_manager_get_preferred_width (ClutterActor *actor,
---
> clutter_layout_manager_get_preferred_width (ClutterActor     *actor,
4,6c4,6
<                                             gfloat for_width,
<                                             gfloat *min_width_p,
<                                             gfloat *natural_width_p)
---
>                                             gfloat            for_width,
>                                             gfloat           *min_width_p,
>                                             gfloat           *natural_width_p)

Solutions by @martinodelilo:

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

67 active golfers, 220 entries

Solutions by @martinodelilo:
16
#4 - Martin Delille / @martinodelilo

09/01/2019 at 04:22PM

17
#>28 - Martin Delille / @martinodelilo

09/01/2019 at 04:21PM

18
#>36 - Martin Delille / @martinodelilo

09/01/2019 at 04:20PM

19
#>39 - Martin Delille / @martinodelilo

09/01/2019 at 04:19PM

21
#>43 - Martin Delille / @martinodelilo

09/01/2019 at 04:17PM

26
#>56 - Martin Delille / @martinodelilo

09/01/2019 at 04:15PM

27
#>59 - Martin Delille / @martinodelilo

09/01/2019 at 04:14PM

31
#>62 - Martin Delille / @martinodelilo

09/01/2019 at 03:59PM