Refactoring
Source code refactoring can improve the quality and maintainability of your project by restructuring your code, while not modifying the runtime behavior. Visual Studio Code supports refactoring operations (refactorings) such asExtract Method andExtract Variable to improve your codebase from within the editor.
For example, a common refactoring used to avoid duplicating code (a maintenance headache) is theExtract Method refactoring, where you select source code and pull it out into its own shared method, so that can reuse the code elsewhere.
Refactorings are provided by a language service. VS Code has built-in support for TypeScript and JavaScript refactoring through theTypeScript language service. Refactoring support for other programming languages is enabled through VS Codeextensions that contribute language services.
The UI elements and VS Code commands for refactoring are the same across the different languages. This article demonstrates refactoring support in VS Code with the TypeScript language service.
Code Actions = Quick Fixes and refactorings
In VS Code, Code Actions can provide both refactorings and Quick Fixes for detected issues (highlighted with red squiggles). When the cursor is on a squiggle or on a selected text region, VS Code shows a light bulb icon in the editor to indicate that a Code Action is available. If you select the Code Action light bulb or use theQuick Fix command⌘. (Windows, LinuxCtrl+.), the Quick Fixes and refactorings control is presented.
If you prefer to only see refactorings without Quick Fixes, then you can use theRefactor command (⌃⇧R (Windows, LinuxCtrl+Shift+R)).
Note: You can completely disable Code Action lightbulbs in the editor with the
editor.lightbulb.enable
setting. You can still open Quick Fixes throughQuick Fix command and⌘. (Windows, LinuxCtrl+.) keyboard shortcut.
Code Actions on save
With theeditor.codeActionsOnSave setting, you can configure a set of Code Actions that are automatically applied when you save a file, for example to organize imports. Based on your workspace files and active extensions, IntelliSense provides a list of available Code Actions.
You can configure one or more Code Actions foreditor.codeActionsOnSave. The Code Actions are then run in the order they're listed.
The following example shows how to configure multiple Code Actions on save:
// On explicit save, run sortImports source action. On auto save (window or focus change), run organizeImports source action."editor.codeActionsOnSave": { "source.organizeImports":"always", "source.sortImports":"explicit",},
The following values are supported for each Code Action:
explicit
(default): Triggers Code Actions when explicitly savedalways
: Triggers Code Actions when explicitly saved and on Auto Saves from window or focus changesnever
: Never triggers Code Actions on save
Althoughtrue
andfalse
are still valid configuration values at the moment, they will be deprecated in favor ofexplicit
,always
, andnever
.
Refactoring actions
Extract Method
Select the source code you'd like to extract and then select the light bulb in the gutter or press (⌘. (Windows, LinuxCtrl+.)) to see available refactorings. Source code fragments can be extracted into a new method, or into a new function at various different scopes. During the extract refactoring, you are prompted to provide a meaningful name.
Extract Variable
The TypeScript language service providesExtract to const refactoring to create a new local variable for the currently selected expression:
When working with classes, you can also extract a value to a new property.
Rename symbol
Renaming is a common operation related to refactoring source code, and VS Code has a separateRename Symbol command (F2). Some languages support renaming a symbol across files. PressF2, type the new desired name, and pressEnter. All instances of the symbol across all files will be renamed.
Refactor Preview
When you apply a refactoring, the changes are directly implemented to your code. In theRefactor Preview panel, you can preview the changes that will be applied by a refactoring operation.
To open theRefactor Preview panel, open the Code Actions control, hover over a refactoring, and then press⌘Enter (Windows, LinuxCtrl+Enter).
You can select any of the changes in theRefactor Preview panel to get a diff view of the changes that are a result of the refactoring operation.
Use theAccept orDiscard controls to apply or cancel the proposed refactoring changes.
Optionally, you can partially apply the refactoring changes by deselecting some of the proposed changes in the Refactor Preview panel.
Keyboard shortcuts for Code Actions
Theeditor.action.codeAction
command lets you configure keyboard shortcuts for specific Code Actions. This keyboard shortcut, for example, triggers theExtract function refactoring Code Actions:
{ "key":"ctrl+shift+r ctrl+e", "command":"editor.action.codeAction", "args": { "kind":"refactor.extract.function" }}
Code Action kinds are specified by extensions using the enhancedCodeActionProvider
API. Kinds are hierarchical, so"kind": "refactor"
shows all refactoring Code Actions, whereas"kind": "refactor.extract.function"
only showsExtract function refactorings.
Using the above keyboard shortcut, if only a single"refactor.extract.function"
Code Action is available, it is automatically applied. If multipleExtract function Code Actions are available, VS Code brings up a context menu to select them:
You can also control how and when Code Actions are automatically applied by using theapply
argument:
{ "key":"ctrl+shift+r ctrl+e", "command":"editor.action.codeAction", "args": { "kind":"refactor.extract.function", "apply":"first" }}
Valid values forapply
:
first
- Always automatically apply the first available Code Action.ifSingle
- (Default) Automatically apply the Code Action if only one is available. Otherwise, show the context menu.never
- Always show the Code Action context menu, even if only a single Code Action is available.
When a Code Action keyboard shortcut is configured with"preferred": true
, only preferred Quick Fixes and refactorings are shown. A preferred Quick Fix addresses the underlying error, while a preferred refactoring is the most common refactoring choice. For example, while multiplerefactor.extract.constant
refactorings might exist, each extracting to a different scope in the file, the preferredrefactor.extract.constant
refactoring is the one that extracts to a local variable.
This keyboard shortcut uses"preferred": true
to create a refactoring that always tries to extract the selected source code to a constant in the local scope:
{ "key":"shift+ctrl+e", "command":"editor.action.codeAction", "args": { "kind":"refactor.extract.constant", "preferred":true, "apply":"ifSingle" }}
Extensions with refactorings
You can find extensions that support refactoring by looking in the VS CodeMarketplace. You can go to the Extensions view (⇧⌘X (Windows, LinuxCtrl+Shift+X)) and type 'refactor' in the search box. You can then sort by install count or ratings to see which extensions are popular.
Tip: The extensions shown above are dynamically queried. Select an extension tile above to read the description and reviews to decide which extension is best for you.
Next steps
- Intro Video - Code Editing - Watch an introductory video on code editing features.
- Code Navigation - VS Code lets you move quickly through your source code.
- Debugging - Learn about debugging with VS Code.
Common questions
Why don't I see any light bulbs when there are errors in my code?
Light bulbs (Code Actions) are only shown when the cursor is over the text showing the error. Hovering over the text shows the error description, but you need to move the cursor or select text to see light bulbs for Quick Fixes and refactorings.