You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ide/read-and-understand-code-cpp.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ You can customize the colors by typing "Fonts" in **Quick Launch**, and then cho
23
23
24
24
Right-click anywhere in a source code file and choose **Outlining** to collapse or expand code blocks and/or custom regions to make it easier to browse only the code you are interested in. For more information, see [Outlining](/visualstudio/ide/outlining).
25
25
26
-

26
+

27
27
28
28
When you place your cursor in front of a curly brace, '{' or '}', the editor highlights its matching counterpart.
29
29
@@ -41,7 +41,7 @@ You can zoom in or out in the editor by pressing the **Ctrl** key and scrolling
41
41
42
42
Scrollbar **Map Mode** enables you to quickly scroll and browse through a code file without leaving your current location. You can click anywhere on the code map to go directly to that location.
43
43
44
-

44
+

45
45
46
46
To turn on **Map Mode**, type "map" in the **Quick Launch** search box in the main toolbar and choose **Use scroll map mode**. For more information, see [How to: Track your code by customizing the scrollbar](/visualstudio/ide/how-to-track-your-code-by-customizing-the-scrollbar).
47
47
@@ -53,13 +53,13 @@ Hover over any variable, function, or other symbol to get information about it,
53
53
54
54
::: moniker range=">=msvc-160"
55
55
56
-

56
+

57
57
58
58
The **Quick Info** tooltip has a **Search Online** link. Go to **Tools** > **Options** > **Text Editor** > **C++** > **View** to specify the search provider.
59
59
60
60
If there is an error in your code, you can hover over it and **Quick Info** will display the error message. You can also find the error message in the Error List window.
61
61
62
-

62
+

63
63
64
64
::: moniker-end
65
65
@@ -69,19 +69,19 @@ If there is an error in your code, you can hover over it and **Quick Info** will
69
69
70
70
If there is an error in your code, you can hover over it and **Quick Info** will display the error message. You can also find the error message in the **Error List** window.
71
71
72
-

72
+

73
73
74
74
::: moniker-end
75
75
76
76
When you call a function, **Parameter Info** shows the types of parameters and the order in which they are expected.
77
77
78
-

78
+

79
79
80
80
## Peek Definition
81
81
82
82
Hover over a variable or function declaration, right-click, then choose **Peek Definition** to see an inline view of its definition without navigating away from your current location. For more information, see [Peek Definition (Alt+F12)](/visualstudio/ide/how-to-view-and-edit-code-by-using-peek-definition-alt-plus-f12).
83
83
84
-

84
+

85
85
86
86
## F1 Help
87
87
@@ -91,19 +91,19 @@ Place the cursor on or just after any type, keyword or function and press **F1**
91
91
92
92
**Class View** displays a searchable set of trees of all code symbols and their scope and parent/child hierarchies, organized on a per-project basis. You can configure what **Class View** displays from **Class View Settings** (click the gear box icon at the top of the window).
93
93
94
-

94
+

95
95
96
96
## Generate graph of include files
97
97
98
98
Right click on a code file in your project and choose **Generate graph of include files** to see a graph of which files are included by other files.
99
99
100
-

100
+

101
101
102
102
## View Call Hierarchy
103
103
104
104
Right click on any function call and view a recursive list of all the functions that it calls, and all the functions that call it. Each function in the list can be expanded in the same way. For more information, see [Call Hierarchy](/visualstudio/ide/reference/call-hierarchy).
105
105
106
-

106
+

0 commit comments