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

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

326 active golfers, 1410 entries

Solutions by @BarePotato:
34
#38 - BarePotato / @BarePotato

07/13/2021 at 11:33PM

35
#>84 - BarePotato / @BarePotato

07/13/2021 at 11:29PM

36
#>101 - BarePotato / @BarePotato

07/13/2021 at 11:26PM

37
#>112 - BarePotato / @BarePotato

07/13/2021 at 10:57PM

38
#>119 - BarePotato / @BarePotato

07/13/2021 at 10:46PM

40
#>131 - BarePotato / @BarePotato

07/13/2021 at 10:40PM

41
#>136 - BarePotato / @BarePotato

07/13/2021 at 10:36PM

42
#>146 - BarePotato / @BarePotato

07/13/2021 at 10:04PM

43
#>154 - BarePotato / @BarePotato

07/13/2021 at 09:59PM

49
#>224 - BarePotato / @BarePotato

07/13/2021 at 09:17PM

53
#>251 - BarePotato / @BarePotato

07/13/2021 at 08:19PM

56
#>267 - BarePotato / @BarePotato

07/13/2021 at 08:15PM