From 12eb8d15234e6f4e77672c29659c29a7c0dcf2fb Mon Sep 17 00:00:00 2001 From: Lyz Date: Thu, 26 Nov 2020 12:42:50 +0100 Subject: [PATCH] fix: correct suggested filetype for yamlfix --- autoload/ale/fix/registry.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/ale/fix/registry.vim b/autoload/ale/fix/registry.vim index e7c8a6b5..0f146faa 100644 --- a/autoload/ale/fix/registry.vim +++ b/autoload/ale/fix/registry.vim @@ -112,7 +112,7 @@ let s:default_registry = { \ }, \ 'yamlfix': { \ 'function': 'ale#fixers#yamlfix#Fix', -\ 'suggested_filetypes': ['python'], +\ 'suggested_filetypes': ['yaml'], \ 'description': 'Fix yaml files with yamlfix.', \ }, \ 'yapf': {