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

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

304 active golfers, 952 entries

Solutions by @pacuna:
10
#255 - Pablo Acuna / @pacuna

08/29/2024 at 12:42AM

11
#>283 - Pablo Acuna / @pacuna

08/29/2024 at 12:40AM

13
#>298 - Pablo Acuna / @pacuna

08/29/2024 at 12:34AM

22
#>300 - Pablo Acuna / @pacuna

08/29/2024 at 12:40AM