doc: Remove c++ from astyle

This commit is contained in:
jhlink
2020-07-10 19:06:22 -04:00
parent 57423f13ec
commit d0b7a6e71f
2 changed files with 3 additions and 3 deletions

View File

@@ -162,8 +162,8 @@ let s:default_registry = {
\ }, \ },
\ 'astyle': { \ 'astyle': {
\ 'function': 'ale#fixers#astyle#Fix', \ 'function': 'ale#fixers#astyle#Fix',
\ 'suggested_filetypes': ['c', 'cpp'], \ 'suggested_filetypes': ['c'],
\ 'description': 'Fix C/C++ with astyle.', \ 'description': 'Fix C with astyle.',
\ }, \ },
\ 'clangtidy': { \ 'clangtidy': {
\ 'function': 'ale#fixers#clangtidy#Fix', \ 'function': 'ale#fixers#clangtidy#Fix',

View File

@@ -1,5 +1,5 @@
" Author: James Kim <jhlink@users.noreply.github.com> " Author: James Kim <jhlink@users.noreply.github.com>
" Description: Fix C/C++ files with astyle. " Description: Fix C files with astyle.
call ale#Set('c_astyle_executable', 'astyle') call ale#Set('c_astyle_executable', 'astyle')