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

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

316 active golfers, 1007 entries

Solutions by @O_hr_good7:
8
#67 - 지형 유 / @O_hr_good7

04/05/2022 at 04:35PM

9
#>188 - 지형 유 / @O_hr_good7

04/05/2022 at 04:24PM

9
#>188 - 지형 유 / @O_hr_good7

04/05/2022 at 04:24PM

11
#>283 - 지형 유 / @O_hr_good7

04/05/2022 at 04:22PM

17
#>309 - 지형 유 / @O_hr_good7

04/05/2022 at 04:22PM

21
#>311 - 지형 유 / @O_hr_good7

04/05/2022 at 04:20PM

27
#>313 - 지형 유 / @O_hr_good7

04/05/2022 at 04:18PM

50
#>316 - 지형 유 / @O_hr_good7

04/05/2022 at 04:17PM