Skip to content

Commit 8040992

Browse files
authored
Massive keywords update, added configurable ansible_extra_special_keywords syntax group (pearofducks#121)
* remove deprecated only_if keyword * rename ansible_with_keywords to ansible_loop_keywords * moved all loop keywords to the ansible_loop_keywords * add ansible_with_keywords_highlight support for backward compatibility * added almost all Ansible keywords * added optional ansible_extra_keywords_highlight_group variable to configure ansible_extra_special_keywords syntax group * default systax group for ansible_extra_special_keywords changed to Structure * updated the README file to reflect all changes made
1 parent f351f0d commit 8040992

File tree

2 files changed

+44
-22
lines changed

2 files changed

+44
-22
lines changed

README.md

+15-8
Original file line numberDiff line numberDiff line change
@@ -97,27 +97,34 @@ Available flags (this feature is off by default):
9797

9898
*Note:* This option is enabled when set, and disabled when not set.
9999

100-
Highlight the following additional keywords: `debugger register always_run changed_when failed_when no_log args vars vars_prompt delegate_to ignore_errors roles tags`
100+
Highlight the following additional keywords: `become become_exe become_flags become_method become_user become_pass prompt_l10n debugger always_run check_mode diff no_log args tags force_handlers vars vars_files vars_prompt delegate_facts delegate_to any_errors_fatal ignore_errors ignore_unreachable max_fail_percentage connection hosts port remote_user module_defaults environment fact_path gather_facts gather_subset gather_timeout async poll throttle timeout order run_once serial strategy`.
101101

102-
By default we only highlight: `include include_tasks import_tasks include_role import_role import_playbook until retries delay when only_if become become_user become_method become_flags become_pass become_exe block rescue always notify listen`.
102+
By default we only highlight: `include include_role include_tasks include_vars import_role import_playbook import_tasks when changed_when failed_when block rescue always notify listen register action local_action post_tasks pre_tasks tasks handlers roles collections` and loop keywords `with_.+`, `loop`, `loop_control`, `until`, `retries`, `delay`.
103+
104+
##### g:ansible_extra_keywords_highlight_group
105+
`let g:ansible_extra_keywords_highlight_group = 'Statement'`
106+
107+
Accepts any syntax group name from `:help E669` - e.g. _Comment_, _Constant_, _Identifier_
108+
109+
*Note:* Defaults to 'Structure' when not set.
103110

104111
##### g:ansible_normal_keywords_highlight
105112
`let g:ansible_normal_keywords_highlight = 'Constant'`
106113

107-
Accepts any syntax group name from `:help E669` - e.g. _Comment_, _Constant_, and _Identifier_
114+
Accepts any syntax group name from `:help E669` - e.g. _Comment_, _Constant_, _Identifier_
108115

109116
*Note:* Defaults to 'Statement' when not set.
110117

111-
This option change the highlight of the following common keywords: `include include_tasks import_tasks include_role import_role import_playbook until retries delay when only_if become become_user become_method become_flag become_pass become_exe block rescue always notify listen`.
118+
This option change the highlight of the following common keywords: `include include_role include_tasks include_vars import_role import_playbook import_tasks when changed_when failed_when block rescue always notify listen register action local_action post_tasks pre_tasks tasks handlers roles collections`.
112119

113-
##### g:ansible_with_keywords_highlight
114-
`let g:ansible_with_keywords_highlight = 'Constant'`
120+
##### g:ansible_loop_keywords_highlight
121+
`let g:ansible_loop_keywords_highlight = 'Constant'`
115122

116-
Accepts any syntax group-name from `:help E669` - e.g. _Comment_, _Constant_, and _Identifier_
123+
Accepts any syntax group-name from `:help E669` - e.g. _Comment_, _Constant_, _Identifier_
117124

118125
*Note:* Defaults to 'Statement' when not set.
119126

120-
This option changes the highlight of all `with_.+`, `loop` and `loop_control` keywords.
127+
This option changes the highlight of all `with_.+`, `loop`, `loop_control`, `until`, `retries` and `delay` keywords.
121128

122129
##### g:ansible_template_syntaxes
123130
`let g:ansible_template_syntaxes = { '*.rb.j2': 'ruby' }`

syntax/ansible.vim

+29-14
Original file line numberDiff line numberDiff line change
@@ -83,29 +83,44 @@ execute 'syn keyword ansible_debug_keywords debug containedin='.s:yamlKey.' cont
8383
highlight default link ansible_debug_keywords Debug
8484

8585
if exists("g:ansible_extra_keywords_highlight")
86-
execute 'syn keyword ansible_extra_special_keywords debugger register always_run changed_when failed_when no_log args vars vars_prompt delegate_to ignore_errors roles tags containedin='.s:yamlKey.' contained'
87-
highlight link ansible_extra_special_keywords Statement
86+
execute 'syn keyword ansible_extra_special_keywords
87+
\ become become_exe become_flags become_method become_user become_pass prompt_l10n
88+
\ debugger always_run check_mode diff no_log args tags force_handlers
89+
\ vars vars_files vars_prompt delegate_facts delegate_to
90+
\ any_errors_fatal ignore_errors ignore_unreachable max_fail_percentage
91+
\ connection hosts port remote_user module_defaults
92+
\ environment fact_path gather_facts gather_subset gather_timeout
93+
\ async poll throttle timeout order run_once serial strategy
94+
\ containedin='.s:yamlKey.' contained'
95+
if exists("g:ansible_extra_keywords_highlight_group")
96+
execute 'highlight link ansible_extra_special_keywords '.g:ansible_extra_keywords_highlight_group
97+
else
98+
highlight link ansible_extra_special_keywords Structure
99+
endif
88100
endif
89101

90-
execute 'syn keyword ansible_normal_keywords include include_tasks import_tasks include_role import_role import_playbook until retries delay when only_if become become_user become_method become_flags become_pass become_exe block rescue always notify listen containedin='.s:yamlKey.' contained'
102+
execute 'syn keyword ansible_normal_keywords
103+
\ include include_role include_tasks include_vars import_role import_playbook import_tasks
104+
\ when changed_when failed_when block rescue always notify listen register
105+
\ action local_action post_tasks pre_tasks tasks handlers roles collections
106+
\ containedin='.s:yamlKey.' contained'
91107
if exists("g:ansible_normal_keywords_highlight")
92108
execute 'highlight link ansible_normal_keywords '.g:ansible_normal_keywords_highlight
93109
else
94110
highlight default link ansible_normal_keywords Statement
95111
endif
96112

97-
execute 'syn match ansible_with_keywords "\vwith_.+" containedin='.s:yamlKey.' contained'
98-
if exists("g:ansible_with_keywords_highlight")
99-
execute 'highlight link ansible_with_keywords '.g:ansible_with_keywords_highlight
100-
else
101-
highlight default link ansible_with_keywords Statement
102-
endif
103-
104-
execute 'syn keyword ansible_with_keywords loop loop_control containedin='.s:yamlKey.' contained'
105-
if exists("g:ansible_with_keywords_highlight")
106-
execute 'highlight link ansible_with_keywords '.g:ansible_with_keywords_highlight
113+
execute 'syn keyword ansible_loop_keywords
114+
\ loop loop_control until retries delay
115+
\ containedin='.s:yamlKey.' contained'
116+
execute 'syn match ansible_loop_keywords "\vwith_.+" containedin='.s:yamlKey.' contained'
117+
if exists("g:ansible_loop_keywords_highlight")
118+
execute 'highlight link ansible_loop_keywords '.g:ansible_loop_keywords_highlight
119+
" backward compatibility: ansible_with_keywords_highlight replaced by ansible_loop_keywords_highlight
120+
elseif exists("g:ansible_with_keywords_highlight")
121+
execute 'highlight link ansible_loop_keywords '.g:ansible_with_keywords_highlight
107122
else
108-
highlight default link ansible_with_keywords Statement
123+
highlight default link ansible_loop_keywords Statement
109124
endif
110125

111126
let b:current_syntax = "ansible"

0 commit comments

Comments
 (0)