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

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

331 active golfers, 1434 entries

Solutions by @MBartsch:
43
#160 - Matthias Bartsch 🏠 / @MBartsch

02/20/2022 at 12:59PM

43
#>160 - Matthias Bartsch 🏠 / @MBartsch

02/20/2022 at 01:03PM

45
#>192 - Matthias Bartsch 🏠 / @MBartsch

02/20/2022 at 12:57PM

47
#>212 - Matthias Bartsch 🏠 / @MBartsch

02/20/2022 at 12:56PM

52
#>246 - Matthias Bartsch 🏠 / @MBartsch

02/20/2022 at 12:55PM

53
#>254 - Matthias Bartsch 🏠 / @MBartsch

02/20/2022 at 12:52PM

56
#>270 - Matthias Bartsch 🏠 / @MBartsch

02/20/2022 at 12:46PM

56
#>270 - Matthias Bartsch 🏠 / @MBartsch

02/20/2022 at 12:50PM

62
#>296 - Matthias Bartsch 🏠 / @MBartsch

02/20/2022 at 12:40PM