diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-11-02 21:27:52 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-11-02 21:27:52 +0000 |
commit | 8bbed0b63a24ebced1a726daf47712ed6cced57d (patch) | |
tree | 536ea6d5aa46d16a9d1edd4fdac0128c0df56743 /clang/docs/ClangFormat.rst | |
parent | a3ddf86dd49eacdbc3ba43118ab7606157f56dd0 (diff) | |
download | bcm5719-llvm-8bbed0b63a24ebced1a726daf47712ed6cced57d.tar.gz bcm5719-llvm-8bbed0b63a24ebced1a726daf47712ed6cced57d.zip |
docs: remove double carriage-return
The double carriage return would silence a warning due to a missing
.clang-format. Permit the error to bubble through.
llvm-svn: 221107
Diffstat (limited to 'clang/docs/ClangFormat.rst')
-rw-r--r-- | clang/docs/ClangFormat.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/docs/ClangFormat.rst b/clang/docs/ClangFormat.rst index b37241786b4..45ea3271799 100644 --- a/clang/docs/ClangFormat.rst +++ b/clang/docs/ClangFormat.rst @@ -96,8 +96,8 @@ This can be integrated by adding the following to your `.vimrc`: .. code-block:: vim - map <C-K> :pyf <path-to-this-file>/clang-format.py<cr><cr> - imap <C-K> <c-o>:pyf <path-to-this-file>/clang-format.py<cr><cr> + map <C-K> :pyf <path-to-this-file>/clang-format.py<cr> + imap <C-K> <c-o>:pyf <path-to-this-file>/clang-format.py<cr> The first line enables :program:`clang-format` for NORMAL and VISUAL mode, the second line adds support for INSERT mode. Change "C-K" to another binding if |