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

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

316 active golfers, 1007 entries

Solutions by @m39752809546:
9
#164 - m397 / @m39752809546

05/11/2021 at 10:45AM

9
#>164 - m397 / @m39752809546

05/11/2021 at 01:43PM

10
#>237 - m397 / @m39752809546

05/11/2021 at 10:38AM

10
#>237 - m397 / @m39752809546

05/11/2021 at 11:03AM

10
#>237 - m397 / @m39752809546

05/11/2021 at 11:06AM

11
#>280 - m397 / @m39752809546

05/11/2021 at 10:37AM

11
#>280 - m397 / @m39752809546

05/11/2021 at 01:41PM

12
#>297 - m397 / @m39752809546

05/11/2021 at 11:08AM

13
#>306 - m397 / @m39752809546

05/11/2021 at 11:03AM

14
#>309 - m397 / @m39752809546

05/11/2021 at 11:12AM

17
#>309 - m397 / @m39752809546

05/11/2021 at 10:35AM

19
#>311 - m397 / @m39752809546

05/11/2021 at 10:44AM

21
#>311 - m397 / @m39752809546

05/11/2021 at 01:08PM