From 3e437ac2a0497ee70eff0e7ebd5eb2f448fa2245 Mon Sep 17 00:00:00 2001 From: pearofducks Date: Sat, 12 Sep 2015 15:59:26 +0200 Subject: [PATCH] Fixes #1, Ignore is not the same as NONE and I'm a horrible person for thinking so --- syntax/ansible.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/syntax/ansible.vim b/syntax/ansible.vim index fb4fb05..b7e10af 100644 --- a/syntax/ansible.vim +++ b/syntax/ansible.vim @@ -39,9 +39,9 @@ highlight link jinjaVarDelim Delimiter " Reset some YAML to plain styling " the number 80 in Ansible isn't any more important than the word root -highlight link yamlInteger Ignore -highlight link yamlBool Ignore -highlight link yamlFlowString Ignore +highlight link yamlInteger NONE +highlight link yamlBool NONE +highlight link yamlFlowString NONE " but it does make sense we visualize quotes easily highlight link yamlFlowStringDelimiter Delimiter @@ -52,7 +52,7 @@ fun! s:attribute_highlight(attributes) syn match ansible_attributes "\v^\s*\w+\=" containedin=yamlPlainScalar endif if a:attributes =~ 'n' - highlight link ansible_attributes Ignore + highlight link ansible_attributes NONE elseif a:attributes =~ 'd' highlight link ansible_attributes Comment else