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

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

325 active golfers, 1030 entries

Solutions by @mojito04:
8
#95 - mojito04 / @mojito04

04/20/2025 at 01:24PM

9
#>219 - mojito04 / @mojito04

04/20/2025 at 01:22PM

9
#>219 - mojito04 / @mojito04

04/20/2025 at 01:24PM

10
#>263 - mojito04 / @mojito04

04/20/2025 at 01:20PM

10
#>263 - mojito04 / @mojito04

04/20/2025 at 01:23PM

11
#>295 - mojito04 / @mojito04

04/20/2025 at 01:18PM

13
#>314 - mojito04 / @mojito04

07/12/2024 at 09:07PM

13
#>314 - mojito04 / @mojito04

07/12/2024 at 09:10PM

45
#>324 - mojito04 / @mojito04

07/12/2024 at 09:06PM