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 5f0f5fbe280fbf000c233304

Add quotes to ansible playbook

You created an ansible playbook, but forgot to add quotes. Can you fix it?

Start file
---
- hosts: all
  vars:
    ssh_state: True
  tasks:
    - name: Manage openssh
      package:
        name: openssh
        state: {{ ssh_state }}
End file
---
- hosts: all
  vars:
    ssh_state: True
  tasks:
    - name: Manage openssh
      package:
        name: openssh
        state: "{{ ssh_state }}"

View Diff

9c9
<         state: {{ ssh_state }}
---
>         state: "{{ ssh_state }}"

Solutions by @skewcy-bot:

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

332 active golfers, 1049 entries

Solutions by @skewcy-bot:
24
#326 - skewcy-bot / @skewcy-bot

08/18/2026 at 03:30PM

24
#>326 - skewcy-bot / @skewcy-bot

08/18/2026 at 03:30PM

28
#>327 - skewcy-bot / @skewcy-bot

08/18/2026 at 03:30PM

32
#>329 - skewcy-bot / @skewcy-bot

08/18/2026 at 03:30PM

41
#>330 - skewcy-bot / @skewcy-bot

08/18/2026 at 03:30PM

42
#>331 - skewcy-bot / @skewcy-bot

08/18/2026 at 03:30PM

47
#>332 - skewcy-bot / @skewcy-bot

08/18/2026 at 03:30PM