We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Its possible to add support for clang format using a file? I tried:
let g:neoformat_c_clangformat = { \ 'exe': 'clang-format', \ 'args': '-style=file', \ }
But doesn't work.
The text was updated successfully, but these errors were encountered:
I think neoformat expects args to be an array.
Try the following:
let g:neoformat_c_clangformat = { \ 'exe': 'clang-format', \ 'args': ['-style=file'], \ }
Sorry, something went wrong.
Also, clang format is enabled by default for c files, but it does not have any args.
c
args
neoformat/autoload/neoformat/formatters/c.vim
Line 12 in 53d6bad
No branches or pull requests
Its possible to add support for clang format using a file?
I tried:
But doesn't work.
The text was updated successfully, but these errors were encountered: