|
1 | 1 | Make text objects for various C and C++ blocks with power of clang |
2 | 2 | ================================================================== |
3 | 3 |
|
4 | | -This vim plugin makes text objects for various C and C++ blocks,funciton, class, namespace, expression, statement and so on. |
| 4 | +This vim plugin makes text objects for various C and C++ blocks,function, class, namespace, expression, statement and so on. |
5 | 5 |
|
6 | 6 | ##Dependencies |
7 | 7 |
|
@@ -41,13 +41,13 @@ int main() |
41 | 41 | ``` |
42 | 42 |
|
43 | 43 | When the cursor is placed at`return`,`i;` selects`return 0;` and`a;` selects whole`main()` function. |
44 | | -This is very simple example. Clang can parse morecomplecated source files like Boost libraries. |
| 44 | +This is very simple example. Clang can parse morecomplicated source files like Boost libraries. |
45 | 45 |
|
46 | 46 | Screenshot: |
47 | 47 |
|
48 | 48 |  |
49 | 49 |
|
50 | | -##Morecomplecated operator-pending mappings |
| 50 | +##Morecomplicated operator-pending mappings |
51 | 51 |
|
52 | 52 | If you set`g:textobj_clang_more_mappings` to`1`, many operator-pending mappings are defined. As a default, mappings in a below table are defined. You can control the number of the mappings with`g:textobj_clang_mapping_kinds`. |
53 | 53 |
|
|