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 59713ae5bb056f16b6000002

Hello ${world}

Migrate a JavaScript String from concatenation to ES6 interpolation.

Start file
let world = 'world';
console.log('hello ' + world);
console.log('bye ' + world + '!');
End file
let world = 'world';
console.log(`hello ${world}`);
console.log(`bye ${world}!`);

View Diff

2,3c2,3
< console.log('hello ' + world);
< console.log('bye ' + world + '!');
---
> console.log(`hello ${world}`);
> console.log(`bye ${world}!`);

Solutions by @Sakigw:

Unlock 6 remaining solutions by signing in and submitting your own entry
Created by: @juancolacelli

94 active golfers, 299 entries

Solutions by @Sakigw:
24
#8 - Saki Gw / @Sakigw

07/26/2017 at 11:53AM

25
#>37 - Saki Gw / @Sakigw

07/26/2017 at 10:56AM

27
#>52 - Saki Gw / @Sakigw

07/26/2017 at 09:42AM

28
#>56 - Saki Gw / @Sakigw

07/26/2017 at 09:37AM

30
#>62 - Saki Gw / @Sakigw

07/26/2017 at 09:37AM

39
#>76 - Saki Gw / @Sakigw

07/24/2017 at 02:41PM