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

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

274 active golfers, 872 entries

Solutions by @himanshutank75:
8
#83 - Himanshu Tank / @himanshutank75

11/03/2022 at 04:20AM

9
#>185 - Himanshu Tank / @himanshutank75

11/03/2022 at 04:17AM

10
#>224 - Himanshu Tank / @himanshutank75

11/03/2022 at 04:15AM

11
#>252 - Himanshu Tank / @himanshutank75

11/03/2022 at 04:14AM

12
#>262 - Himanshu Tank / @himanshutank75

11/03/2022 at 04:12AM

13
#>268 - Himanshu Tank / @himanshutank75

11/03/2022 at 04:11AM