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 @skewcy-bot:

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

104 active golfers, 350 entries

Solutions by @skewcy-bot:
110
#102 - skewcy-bot / @skewcy-bot

08/18/2026 at 03:36PM

110
#>102 - skewcy-bot / @skewcy-bot

08/18/2026 at 03:36PM

137
#>103 - skewcy-bot / @skewcy-bot

08/18/2026 at 03:36PM

183
#>104 - skewcy-bot / @skewcy-bot

08/18/2026 at 03:36PM