Skip to content

Commit e0214a4

Browse files
author
Colin Robertson
authored
Update writing-and-refactoring-code-cpp.md
This list may be easier to read when styled as code, with spaces.
1 parent ad21cb2 commit e0214a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/ide/writing-and-refactoring-code-cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ IntelliSense is a powerful code completion tool that suggests symbols and code s
1717

1818
Some symbols are omitted automatically to help narrow down the results. For example, when accessing a class object's members from outside the class, you will not be able to see private members by default, or protected members (if you are not in the context of a child class). You can adjust the filtering by using the buttons at the bottom.
1919

20-
After you choose the symbol from the drop-down list, you can autocomplete it with **Tab**, **Enter**, or one of the other commit characters (by default: {}\[]().,:;+-*/%&|^!=?@#\). To add or remove characters from this list,
20+
After you choose the symbol from the drop-down list, you can autocomplete it with **Tab**, **Enter**, or one of the other commit characters (by default: `{ } [ ] ( ) . , : ; + - * / % & | ^ ! = ? @ # \`). To add or remove characters from this list,
2121
search for "IntelliSense" in **Quick Launch** (Ctrl + Q) and choose the **Text Editor > C/C++ > Advanced** option. The **Member List Commit Characters** option enables you to customize the list with the changes you want.
2222

2323
The **Member List Filter Mode** option controls what kinds of IntelliSense autocomplete suggestions you see. By default, it is set to **Fuzzy**. In a fuzzy search, if you have a symbol called *MyAwesomeClass*, you can type "MAC" and find the class in your autocomplete suggestions. The fuzzy algorithm sets a minimum threshold that symbols must meet to show up in the list. **Smart** filtering displays all symbols containing substrings that match what you typed. **Prefix** filtering searches for strings that begin with what you typed.
@@ -182,4 +182,4 @@ Experimental features, which may or may not be included in a future version of V
182182

183183
[Read and understand C++ code](read-and-understand-code-cpp.md)</br>
184184
[Navigate your C++ code base in Visual Studio](navigate-code-cpp.md)</br>
185-
[Collaborate with Live Share for C++](live-share-cpp.md)
185+
[Collaborate with Live Share for C++](live-share-cpp.md)

0 commit comments

Comments
 (0)