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

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

323 active golfers, 1400 entries

Solutions by @zacoxi:
34
#6 - Dax / @zacoxi

12/13/2020 at 12:34PM

36
#>100 - Dax / @zacoxi

12/13/2020 at 12:22PM

37
#>108 - Dax / @zacoxi

12/13/2020 at 12:26PM

37
#>108 - Dax / @zacoxi

12/13/2020 at 12:28PM

38
#>118 - Dax / @zacoxi

12/13/2020 at 12:07PM

47
#>203 - Dax / @zacoxi

12/13/2020 at 12:05PM

48
#>215 - Dax / @zacoxi

12/13/2020 at 12:17PM

52
#>237 - Dax / @zacoxi

12/13/2020 at 12:10PM