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

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

94 active golfers, 299 entries

Solutions by @aigledesalpes:
25
#43 - Ivo Blöchliger / @aigledesalpes

08/23/2019 at 11:49AM

26
#>51 - Ivo Blöchliger / @aigledesalpes

08/23/2019 at 11:42AM

29
#>60 - Ivo Blöchliger / @aigledesalpes

08/23/2019 at 11:39AM

31
#>64 - Ivo Blöchliger / @aigledesalpes

08/23/2019 at 11:34AM

32
#>68 - Ivo Blöchliger / @aigledesalpes

08/23/2019 at 11:42AM

40
#>76 - Ivo Blöchliger / @aigledesalpes

08/23/2019 at 11:25AM