diff options
author | Lyz <lyz@riseup.net> | 2020-11-26 12:42:50 +0100 |
---|---|---|
committer | Lyz <lyz@riseup.net> | 2020-11-26 12:42:50 +0100 |
commit | 12eb8d15234e6f4e77672c29659c29a7c0dcf2fb (patch) | |
tree | a8de9ed73e87ad1b0ea0f997c7701ee237f9a259 /autoload | |
parent | c69d696e1b63c7797e8696f923856d131f02f5e9 (diff) | |
download | ale-12eb8d15234e6f4e77672c29659c29a7c0dcf2fb.zip |
fix: correct suggested filetype for yamlfix
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/fix/registry.vim | 2 |
1 files changed, 1 insertions, 1 deletions
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': { |