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

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

324 active golfers, 1402 entries

Solutions by @yancy_dong:
34
#48 - yancy / @yancy_dong

04/28/2022 at 02:27PM

35
#>87 - yancy / @yancy_dong

04/28/2022 at 02:25PM

36
#>102 - yancy / @yancy_dong

04/28/2022 at 02:23PM

37
#>113 - yancy / @yancy_dong

04/28/2022 at 02:21PM

38
#>118 - yancy / @yancy_dong

04/28/2022 at 02:17PM

40
#>131 - yancy / @yancy_dong

04/28/2022 at 02:12PM

61
#>288 - yancy / @yancy_dong

09/17/2021 at 11:06AM