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 505cb13a52512d000200002b

you're stuck on jQuery < 1.7

replace calls to jQuery 1.7+'s `on` with calls to pre 1.7 `bind`

Start file
    $('li.assessment_question').on('click', 'a.add_question_addendum', @openQuestionAddendumForm)
    $('li.assessment_question').on('click', 'a.cancel_question_addendum', @cancelQuestionAddendum)
    $('li.assessment_question').on('ajax:beforeSend', 'form.question_addendum_form', @hideFormEnableAddAddendumLink)
    $('li.assessment_question').on('ajax:success', 'form.question_addendum_form', @appendQuestionAddendum)
End file
    $('a.add_question_addendum').bind('click', @openQuestionAddendumForm)
    $('a.cancel_question_addendum').bind('click', @cancelQuestionAddendum)
    $('form.question_addendum_form').bind('ajax:beforeSend', @hideFormEnableAddAddendumLink)
    $('form.question_addendum_form').bind('ajax:success', @appendQuestionAddendum)

View Diff

1,4c1,4
<     $('li.assessment_question').on('click', 'a.add_question_addendum', @openQuestionAddendumForm)
<     $('li.assessment_question').on('click', 'a.cancel_question_addendum', @cancelQuestionAddendum)
<     $('li.assessment_question').on('ajax:beforeSend', 'form.question_addendum_form', @hideFormEnableAddAddendumLink)
<     $('li.assessment_question').on('ajax:success', 'form.question_addendum_form', @appendQuestionAddendum)
---
>     $('a.add_question_addendum').bind('click', @openQuestionAddendumForm)
>     $('a.cancel_question_addendum').bind('click', @cancelQuestionAddendum)
>     $('form.question_addendum_form').bind('ajax:beforeSend', @hideFormEnableAddAddendumLink)
>     $('form.question_addendum_form').bind('ajax:success', @appendQuestionAddendum)

Solutions by @jashbeta:

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

110 active golfers, 335 entries

Solutions by @jashbeta:
26
#21 - Jaime A. Sánchez / @jashbeta

10/20/2012 at 04:13AM

26
#>21 - Jaime A. Sánchez / @jashbeta

10/20/2012 at 04:14AM

27
#>39 - Jaime A. Sánchez / @jashbeta

10/20/2012 at 04:11AM

27
#>39 - Jaime A. Sánchez / @jashbeta

10/20/2012 at 04:12AM

27
#>39 - Jaime A. Sánchez / @jashbeta

10/20/2012 at 04:15AM

28
#>43 - Jaime A. Sánchez / @jashbeta

10/20/2012 at 04:09AM

30
#>59 - Jaime A. Sánchez / @jashbeta

10/20/2012 at 04:02AM

30
#>59 - Jaime A. Sánchez / @jashbeta

10/20/2012 at 04:05AM