doc: Remove c++ from astyle
This commit is contained in:
parent
57423f13ec
commit
d0b7a6e71f
2 changed files with 3 additions and 3 deletions
|
@ -162,8 +162,8 @@ let s:default_registry = {
|
|||
\ },
|
||||
\ 'astyle': {
|
||||
\ 'function': 'ale#fixers#astyle#Fix',
|
||||
\ 'suggested_filetypes': ['c', 'cpp'],
|
||||
\ 'description': 'Fix C/C++ with astyle.',
|
||||
\ 'suggested_filetypes': ['c'],
|
||||
\ 'description': 'Fix C with astyle.',
|
||||
\ },
|
||||
\ 'clangtidy': {
|
||||
\ 'function': 'ale#fixers#clangtidy#Fix',
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
" 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')
|
||||
|
||||
|
|
Reference in a new issue