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

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

295 active golfers, 926 entries

Solutions by @F4k3K0n70:
8
#34 - Fake Konto / @F4k3K0n70

02/13/2021 at 12:13AM

9
#>142 - Fake Konto / @F4k3K0n70

02/13/2021 at 12:10AM

10
#>224 - Fake Konto / @F4k3K0n70

02/13/2021 at 12:10AM

11
#>266 - Fake Konto / @F4k3K0n70

02/12/2021 at 11:51PM

12
#>281 - Fake Konto / @F4k3K0n70

02/12/2021 at 11:50PM