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

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

326 active golfers, 1410 entries

Solutions by @phyque_zz:
37
#117 - kn95 / @phyque_zz

07/16/2023 at 03:05AM

38
#>119 - kn95 / @phyque_zz

07/15/2023 at 12:35PM

39
#>126 - kn95 / @phyque_zz

07/15/2023 at 12:31PM

40
#>133 - kn95 / @phyque_zz

07/15/2023 at 11:44AM

40
#>133 - kn95 / @phyque_zz

07/15/2023 at 01:07PM

42
#>152 - kn95 / @phyque_zz

07/15/2023 at 11:42AM

43
#>162 - kn95 / @phyque_zz

07/15/2023 at 11:38AM

46
#>201 - kn95 / @phyque_zz

07/15/2023 at 11:35AM

49
#>228 - kn95 / @phyque_zz

07/15/2023 at 11:33AM

50
#>233 - kn95 / @phyque_zz

07/15/2023 at 11:29AM