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

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

307 active golfers, 1333 entries

Solutions by @Zbrahark:
34
#25 - Martin LOUAZEL / @Zbrahark

02/24/2021 at 12:35PM

35
#>75 - Martin LOUAZEL / @Zbrahark

02/24/2021 at 12:32PM

36
#>95 - Martin LOUAZEL / @Zbrahark

02/24/2021 at 12:30PM

37
#>104 - Martin LOUAZEL / @Zbrahark

02/24/2021 at 12:28PM

39
#>115 - Martin LOUAZEL / @Zbrahark

02/24/2021 at 12:24PM

40
#>120 - Martin LOUAZEL / @Zbrahark

02/24/2021 at 12:16PM

42
#>136 - Martin LOUAZEL / @Zbrahark

02/24/2021 at 12:13PM

43
#>143 - Martin LOUAZEL / @Zbrahark

02/24/2021 at 12:12PM

46
#>186 - Martin LOUAZEL / @Zbrahark

02/24/2021 at 12:08PM