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 5fd1ea4cf90da80006545d46

Modernise code

Modernise and clean up some C++ code.

Start file
std::vector<int> numbers;
numbers.push_back(1337);
numbers.push_back(424242);
numbers.push_back(12345678);
numbers.push_back(3141);
End file
auto numbers = { 1337, 424242, 12345678, 3141 };

View Diff

1,5c1
< std::vector<int> numbers;
< numbers.push_back(1337);
< numbers.push_back(424242);
< numbers.push_back(12345678);
< numbers.push_back(3141);
---
> auto numbers = { 1337, 424242, 12345678, 3141 };

Solutions by @supercamarche:

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

308 active golfers, 1334 entries

Solutions by @supercamarche:
34
#57 - bastien batardier / @supercamarche

11/08/2022 at 10:16PM

35
#>87 - bastien batardier / @supercamarche

11/08/2022 at 10:15PM

36
#>99 - bastien batardier / @supercamarche

11/08/2022 at 10:14PM

37
#>108 - bastien batardier / @supercamarche

11/08/2022 at 10:04PM

39
#>119 - bastien batardier / @supercamarche

11/08/2022 at 10:01PM

40
#>124 - bastien batardier / @supercamarche

11/08/2022 at 09:53PM

43
#>149 - bastien batardier / @supercamarche

11/08/2022 at 09:50PM

68
#>286 - bastien batardier / @supercamarche

11/08/2022 at 09:39PM