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

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

326 active golfers, 1410 entries

Solutions by @DavinderJolly:
39
#127 - Davinder Jolly / @DavinderJolly

11/29/2023 at 11:36PM

40
#>133 - Davinder Jolly / @DavinderJolly

11/29/2023 at 11:28PM

40
#>133 - Davinder Jolly / @DavinderJolly

11/29/2023 at 11:35PM

42
#>152 - Davinder Jolly / @DavinderJolly

11/29/2023 at 11:27PM

43
#>162 - Davinder Jolly / @DavinderJolly

11/29/2023 at 11:26PM

44
#>184 - Davinder Jolly / @DavinderJolly

11/29/2023 at 11:32PM

45
#>195 - Davinder Jolly / @DavinderJolly

11/29/2023 at 11:24PM

46
#>201 - Davinder Jolly / @DavinderJolly

11/29/2023 at 11:15PM

47
#>216 - Davinder Jolly / @DavinderJolly

11/30/2023 at 04:19PM