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

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

317 active golfers, 1008 entries

Solutions by @kanguk123:
8
#94 - kanguk123 / @kanguk123

03/29/2025 at 04:45PM

9
#>217 - kanguk123 / @kanguk123

03/29/2025 at 04:43PM

10
#>261 - kanguk123 / @kanguk123

03/29/2025 at 04:41PM

11
#>292 - kanguk123 / @kanguk123

03/29/2025 at 04:38PM

12
#>301 - kanguk123 / @kanguk123

03/29/2025 at 04:37PM

13
#>308 - kanguk123 / @kanguk123

03/29/2025 at 04:37PM

17
#>310 - kanguk123 / @kanguk123

03/29/2025 at 04:34PM

55
#>317 - kanguk123 / @kanguk123

03/29/2025 at 04:31PM