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

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

306 active golfers, 1331 entries

Solutions by @andreaszwei:
34
#21 - Andreas Siegrist / @andreaszwei

01/20/2021 at 11:23AM

34
#>46 - Andreas Siegrist / @andreaszwei

02/02/2022 at 10:10AM

35
#>73 - Andreas Siegrist / @andreaszwei

01/20/2021 at 11:21AM

36
#>95 - Andreas Siegrist / @andreaszwei

01/20/2021 at 11:17AM

37
#>102 - Andreas Siegrist / @andreaszwei

01/20/2021 at 11:16AM

37
#>105 - Andreas Siegrist / @andreaszwei

02/02/2022 at 10:09AM

38
#>111 - Andreas Siegrist / @andreaszwei

01/20/2021 at 11:13AM