vim-ansible-yaml icon indicating copy to clipboard operation
vim-ansible-yaml copied to clipboard

Add additional support for Ansible in VIM

Results 15 vim-ansible-yaml issues
Sort by recently updated
recently updated
newest added
trafficstars

Create a new ansible .yml file and put this in: ``` yaml - name: install python packages pip: name={{item.name}} version={{item.version}} with_items: - { name: 'Jinja2', version: '2.7.1' } # The...

bug

expand() returns backslashes on Windows, but the regular expression was expecting forward slashes only. autocmd should be able to do everything the removed code was doing, and it works on...

- Use \v with all patterns. - Align list entries properly, using a new function. - New settings: indent_list_entries to allow extra indent for list entries (on by default). This...

``` yaml - name: create directory file: state=directory dest=/path/to/file ``` The text after `file:` is highlighted, but the text on the next line isn't. It should be, as per the...

enhancement

This needs thorough testing, but I think it solves #2. The first commit reorganizes parts of the jinja syntax file, but should have no effect at all on the highlighting....