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

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

325 active golfers, 1030 entries

Solutions by @k84d:
9
#202 - k84d / @k84d

01/29/2024 at 03:14PM

9
#>202 - k84d / @k84d

01/29/2024 at 03:17PM

9
#>202 - k84d / @k84d

01/29/2024 at 03:19PM

10
#>255 - k84d / @k84d

01/29/2024 at 03:06PM

12
#>305 - k84d / @k84d

01/29/2024 at 02:58PM

13
#>314 - k84d / @k84d

01/29/2024 at 02:47PM

18
#>317 - k84d / @k84d

01/29/2024 at 02:55PM

65
#>325 - k84d / @k84d

01/29/2024 at 03:02PM

143
#>325 - k84d / @k84d

01/29/2024 at 03:06PM