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

323 active golfers, 1400 entries

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

07/16/2023 at 03:05AM

38
#>118 - kn95 / @phyque_zz

07/15/2023 at 12:35PM

39
#>125 - kn95 / @phyque_zz

07/15/2023 at 12:31PM

40
#>132 - kn95 / @phyque_zz

07/15/2023 at 11:44AM

40
#>132 - kn95 / @phyque_zz

07/15/2023 at 01:07PM

42
#>151 - kn95 / @phyque_zz

07/15/2023 at 11:42AM

43
#>161 - kn95 / @phyque_zz

07/15/2023 at 11:38AM

46
#>200 - kn95 / @phyque_zz

07/15/2023 at 11:35AM

49
#>227 - kn95 / @phyque_zz

07/15/2023 at 11:33AM

50
#>231 - kn95 / @phyque_zz

07/15/2023 at 11:29AM