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 536cfa23fcccd100025678bd

Extract argument from function

The aim is to see if you can do some refactoring very fast.

Start file
attr("y",function(v){return v})
End file
f=function(v){return v};
attr("y",f)

View Diff

1c1,2
< attr("y",function(v){return v})
---
> f=function(v){return v};
> attr("y",f)

Solutions by @rdvr001:

Unlock 2 remaining solutions by signing in and submitting your own entry
Created by: @EdgarHipp

744 active golfers, 2314 entries

Solutions by @rdvr001:
20
#690 - Ryan van Rensburg / @rdvr001

07/21/2016 at 10:29AM

21
#>701 - Ryan van Rensburg / @rdvr001

07/21/2016 at 10:31AM