Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VS Code has a star (★) in the property name

Recently, I've noticed that some of the JavaScript\TypeScript objects, in VS Code, has a starred properties. What does that mean?

Example: I've defined an array of strings - 'myArray' enter image description here

like image 792
altgov3en Avatar asked Jun 16 '19 10:06

altgov3en


People also ask

How do you get symbols in VS Code?

Go to Symbol# You can navigate symbols inside a file with Ctrl+Shift+O.

What is rename symbol in VS Code?

Rename symbol# Renaming is a common operation related to refactoring source code and VS Code has a separate Rename Symbol command (F2). Some languages support rename symbol across files. Press F2 and then type the new desired name and press Enter. All usages of the symbol will be renamed, across files.

Where is properties in VS Code?

To open the Settings editor, use the following VS Code menu command: On Windows/Linux - File > Preferences > Settings. On macOS - Code > Preferences > Settings.

How do you show special characters in VS Code?

In Visual Studio Code's menu bar, go to Code › Preferences › Settings or press ⌘ + , . Search for Render Whitespace (in the Search settings search bar). Set the value to all .


1 Answers

As Yannick K pointed out correctly the stars come from the IntelliCode extension and aim to mark the most commonly used attributes and methods.

like image 132
Ricki-BumbleDev Avatar answered Nov 04 '22 14:11

Ricki-BumbleDev