> For the complete documentation index, see [llms.txt](https://burkeholland.gitbook.io/vs-code-can-do-that/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://burkeholland.gitbook.io/vs-code-can-do-that/exercise-3-navigation-and-refactoring/rename-refactor.md).

# Rename refactor

In the previous "Multiple Cursors" exercise, we renamed a variable using multiple cursors. This is a bad idea. It is highly likely that you 1) won't get all instances of the variable and 2) it doesn't take care of instances in other files.

VS Code includes a powerful refactoring capability called "Rename". It allows you to rename a variable, method, class, ect and all references will be updated. Even if they are in another file.

### Update the app class name

{% tabs %}
{% tab title="Exercise" %}

* Export the `App` class from "app.js"
* Create a new file called "main.js"
* Import the `App` class and initialize it.
* Rename the `App` class in "index.html" `Application`
  {% endtab %}

{% tab title="Answer" %}

* Export the `App` class from the "app.js" file.

![](/files/-Lm06T2flNpRywL_1j4h)

* Create a new file called "main.js" in the "src" folder.
* In the "main.js" file, import the `App` class and initialize it.

```
import App from "./app";
let app = new App();
```

* Highlight the `App` class declaration in the "app.js" file
* Press **F2**
* Rename to `Application`
* Notice that the reference in "main.js" is also updated

{% endtab %}
{% endtabs %}

{% hint style="info" %}
Note that if you want to see all references in your project for a specific object, put your cursor on it and press **Shift + F12.**
{% endhint %}

![](/files/-Lm07uZa4DzhnTfajaXW)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://burkeholland.gitbook.io/vs-code-can-do-that/exercise-3-navigation-and-refactoring/rename-refactor.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
