Minor style fixes

This commit is contained in:
Chiel92 2015-01-08 12:01:07 +01:00
parent 8446318085
commit 0df099e63e

View File

@ -63,8 +63,11 @@ It's probably in your distro's repository, so you can download it as a regular p
For Ubuntu type `sudo apt-get install astyle` in a terminal. For Ubuntu type `sudo apt-get install astyle` in a terminal.
Otherwise, download it here: http://astyle.sourceforge.net/. Otherwise, download it here: http://astyle.sourceforge.net/.
* `clang-format` for Objective-C. * `clang-format` for __Objective-C__.
clang-format is a product of LLVM source builds. If you `brew install llvm`, clang-format can be found in /usr/local/Cellar/llvm/bin/. To specify custom clang-format options, add to your .vimrc: `let g:format_args_objc = "-style=file"`. clang-format details: http://clang.llvm.org/docs/ClangFormat.html clang-format is a product of LLVM source builds.
If you `brew install llvm`, clang-format can be found in /usr/local/Cellar/llvm/bin/.
To to load style configuration from a .clang-format file, add to your .vimrc: `let g:format_args_objc = "-style=file"`.
Details: http://clang.llvm.org/docs/ClangFormat.html.
* `autopep8` for __Python__. * `autopep8` for __Python__.
It's probably in your distro's repository, so you can download it as a regular package. It's probably in your distro's repository, so you can download it as a regular package.