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

Braces or Brackets?

Someone forgot whether to use braces or brackets and you have to clean up their code!

Start file
var some_function = function {arg1, arg2} [
	var some_array = (1, 2, 3, 4, 'foo');
	for {var i in some_array} (
		console.log(some_array, [{1 + (8 / 2)}, 'hello (world)');
	)
];
End file
var some_function = function (arg1, arg2) {
	var some_array = [1, 2, 3, 4, 'foo'];
	for (var i in some_array) {
		console.log(some_array, [(1 + (8 / 2)), 'hello (world)');
	}
};

View Diff

1,6c1,6
< var some_function = function {arg1, arg2} [
<       var some_array = (1, 2, 3, 4, 'foo');
<       for {var i in some_array} (
<               console.log(some_array, [{1 + (8 / 2)}, 'hello (world)');
<       )
< ];
---
> var some_function = function (arg1, arg2) {
>       var some_array = [1, 2, 3, 4, 'foo'];
>       for (var i in some_array) {
>               console.log(some_array, [(1 + (8 / 2)), 'hello (world)');
>       }
> };

Solutions by @xscript71:

Unlock 10 remaining solutions by signing in and submitting your own entry
Created by: @sabiddle

316 active golfers, 1018 entries

Solutions by @xscript71:
34
#41 - xscript71 / @xscript71

11/26/2024 at 02:25PM

35
#>50 - xscript71 / @xscript71

11/26/2024 at 02:22PM

36
#>53 - xscript71 / @xscript71

11/26/2024 at 02:17PM

37
#>67 - xscript71 / @xscript71

11/26/2024 at 02:10PM

38
#>77 - xscript71 / @xscript71

11/26/2024 at 02:03PM

39
#>84 - xscript71 / @xscript71

11/26/2024 at 02:00PM

42
#>127 - xscript71 / @xscript71

11/26/2024 at 01:55PM

43
#>140 - xscript71 / @xscript71

11/26/2024 at 01:09PM

43
#>140 - xscript71 / @xscript71

11/26/2024 at 01:46PM

44
#>152 - xscript71 / @xscript71

10/15/2024 at 12:02AM