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

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

317 active golfers, 1008 entries

Solutions by @xpexpe2:
8
#63 - 준현 / @xpexpe2

03/31/2022 at 10:26AM

9
#>185 - 준현 / @xpexpe2

03/31/2022 at 10:24AM

10
#>246 - 준현 / @xpexpe2

03/31/2022 at 10:21AM

11
#>284 - 준현 / @xpexpe2

03/31/2022 at 10:16AM

12
#>299 - 준현 / @xpexpe2

03/31/2022 at 10:08AM

13
#>308 - 준현 / @xpexpe2

03/31/2022 at 06:54AM

14
#>310 - 준현 / @xpexpe2

03/31/2022 at 06:53AM