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

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

316 active golfers, 1007 entries

Solutions by @andreaszwei:
8
#32 - Andreas Siegrist / @andreaszwei

01/28/2021 at 10:05PM

8
#>38 - Andreas Siegrist / @andreaszwei

03/19/2021 at 01:06PM

9
#>148 - Andreas Siegrist / @andreaszwei

01/28/2021 at 09:58PM

9
#>148 - Andreas Siegrist / @andreaszwei

01/28/2021 at 10:04PM

9
#>156 - Andreas Siegrist / @andreaszwei

03/19/2021 at 01:01PM

9
#>156 - Andreas Siegrist / @andreaszwei

03/19/2021 at 01:05PM

10
#>234 - Andreas Siegrist / @andreaszwei

01/28/2021 at 10:04PM