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

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

252 active golfers, 1073 entries

Solutions by @mandophysics:
34
#28 - mandophysics / @mandophysics

03/05/2021 at 10:08PM

35
#>70 - mandophysics / @mandophysics

03/05/2021 at 10:05PM

36
#>83 - mandophysics / @mandophysics

03/05/2021 at 10:00PM

37
#>91 - mandophysics / @mandophysics

03/05/2021 at 09:55PM

39
#>99 - mandophysics / @mandophysics

03/05/2021 at 09:52PM

40
#>103 - mandophysics / @mandophysics

03/05/2021 at 09:49PM

41
#>107 - mandophysics / @mandophysics

03/05/2021 at 09:47PM

42
#>118 - mandophysics / @mandophysics

03/05/2021 at 09:40PM

43
#>121 - mandophysics / @mandophysics

03/05/2021 at 09:32PM

54
#>199 - mandophysics / @mandophysics

03/05/2021 at 09:24PM

60
#>222 - mandophysics / @mandophysics

03/05/2021 at 09:19PM

142
#>245 - mandophysics / @mandophysics

03/05/2021 at 09:12PM

253
#>251 - mandophysics / @mandophysics

03/05/2021 at 09:08PM