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

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

72 active golfers, 259 entries

Solutions by @_berg85:
18
#38 - Johan Berg / @_berg85

02/14/2014 at 10:09AM

21
#>45 - Johan Berg / @_berg85

02/14/2014 at 10:06AM

23
#>55 - Johan Berg / @_berg85

02/14/2014 at 10:05AM

26
#>61 - Johan Berg / @_berg85

02/14/2014 at 10:03AM

27
#>63 - Johan Berg / @_berg85

02/14/2014 at 10:01AM