summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorMatheus <46067952+Spixmaster@users.noreply.github.com>2022-11-25 14:16:16 +0100
committerGitHub <noreply@github.com>2022-11-25 13:16:16 +0000
commit5ce2bf84ca00cee8f375f108952789302980ae57 (patch)
tree2412926618e08f343c0af92cf719bdf1872db7c3 /autoload
parentb8de4ac96dcb84ff7ec704a65cdffad97d9bbeb1 (diff)
downloadale-5ce2bf84ca00cee8f375f108952789302980ae57.zip
Added support for more file types for clang-format. (#4367)
Diffstat (limited to 'autoload')
-rw-r--r--autoload/ale/fix/registry.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/autoload/ale/fix/registry.vim b/autoload/ale/fix/registry.vim
index b44adb0e..b8d493f9 100644
--- a/autoload/ale/fix/registry.vim
+++ b/autoload/ale/fix/registry.vim
@@ -263,8 +263,8 @@ let s:default_registry = {
\ },
\ 'clang-format': {
\ 'function': 'ale#fixers#clangformat#Fix',
-\ 'suggested_filetypes': ['c', 'cpp', 'cuda'],
-\ 'description': 'Fix C/C++ and cuda files with clang-format.',
+\ 'suggested_filetypes': ['c', 'cpp', 'cs', 'cuda', 'java', 'javascript', 'json', 'objc', 'proto'],
+\ 'description': 'Fix C, C++, C#, CUDA, Java, JavaScript, JSON, ObjectiveC and Protobuf files with clang-format.',
\ },
\ 'cmakeformat': {
\ 'function': 'ale#fixers#cmakeformat#Fix',