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

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

297 active golfers, 933 entries

Solutions by @JoeFarnsworth:
10
#229 - Joe Farnsworth / @JoeFarnsworth

06/22/2021 at 02:06AM

12
#>283 - Joe Farnsworth / @JoeFarnsworth

06/22/2021 at 02:05AM

13
#>290 - Joe Farnsworth / @JoeFarnsworth

06/22/2021 at 02:04AM