aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Jasper <djasper@google.com>2013-03-22 12:44:20 +0000
committerDaniel Jasper <djasper@google.com>2013-03-22 12:44:20 +0000
commit0292519fe7499390428b37962da5969a0685b2a8 (patch)
treee8179eeea11ab6176752d418c954982d64984380
parent554f63f2c7e359c1f699ae5ba08cca18e849d4de (diff)
Update docs after moving clang-format from clang-tools-extra to cfe.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@177729 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/ClangFormat.rst19
1 files changed, 9 insertions, 10 deletions
diff --git a/docs/ClangFormat.rst b/docs/ClangFormat.rst
index f5c0b4c1fb..92d7fc319e 100644
--- a/docs/ClangFormat.rst
+++ b/docs/ClangFormat.rst
@@ -10,9 +10,8 @@ standalone tool and editor integrations.
Standalone Tool
===============
-:program:`clang-format` is part of the `clang/tools/extra` (see
-:doc:`ClangTools <ClangTools>`) repository and can be used to format
-C/C++/Obj-C code.
+:program:`clang-format` is located in `clang/tools/clang-format` and can be used
+to format C/C++/Obj-C code.
.. code-block:: console
@@ -35,7 +34,7 @@ C/C++/Obj-C code.
-length=<int> - Format a range of this length, -1 for end of file.
-offset=<int> - Format a range starting at this file offset.
-stats - Enable statistics output from program
- -style=<string> - Coding style, currently supports: LLVM, Google.
+ -style=<string> - Coding style, currently supports: LLVM, Google, Chromium.
-version - Display the version of this program
@@ -45,18 +44,18 @@ Vim Integration
There is an integration for :program:`vim` which lets you run the
:program:`clang-format` standalone tool on your current buffer, optionally
selecting regions to reformat. The integration has the form of a `python`-file
-which can be found under `clang/tools/extra/clang-format/clang-format.py`.
+which can be found under `clang/tools/clang-format/clang-format.py`.
This can be integrated by adding the following to your `.vimrc`:
.. code-block:: vim
- map <C-I> :pyf <path-to-this-file>/clang-format.py<CR>
- imap <C-I> <ESC>:pyf <path-to-this-file>/clang-format.py<CR>i
+ map <C-K> :pyf <path-to-this-file>/clang-format.py<CR>
+ imap <C-K> <ESC>:pyf <path-to-this-file>/clang-format.py<CR>i
The first line enables :program:`clang-format` for NORMAL and VISUAL mode, the
-second line adds support for INSERT mode. Change "C-I" to another binding if
-you need :program:`clang-format` on a different key (C-I stands for Ctrl+i).
+second line adds support for INSERT mode. Change "C-K" to another binding if
+you need :program:`clang-format` on a different key (C-K stands for Ctrl+k).
With this integration you can press the bound key and clang-format will
format the current line in NORMAL and INSERT mode or the selected region in
@@ -70,7 +69,7 @@ or save any files. To revert a formatting, just undo.
Script for patch reformatting
=============================
-The python script `clang/tools/extra/clang-format-diff.py` parses the output of
+The python script `clang/tools/clang-format-diff.py` parses the output of
a unified diff and reformats all contained lines with :program:`clang-format`.
.. code-block:: console