-
Notifications
You must be signed in to change notification settings - Fork 18
Refactoring
The Papyrus Language extension provides features related to refactoring source code.
Source code refactoring can improve the quality and maintainability of your project by restructuring your code without modifying the runtime behavior.
You can use Search and Replace to rename the current selection across files. Expand the Search widget to display the Replace text box. Read more about VS Code Search and Replace.
The Change All Occurrences command will rename the current selection within a single file. Refactoring with Change All Occurrences is ideal for local refactoring. Use this to find and replace all occurrences in the open file and change them as you type.
The Rename Symbol command will rename a source code symbol across files.
Renaming is a common operation related to refactoring source code and the Rename Symbol command (F2
) makes this simple.
Press F2
and then type the new desired name and press Enter
.
Alternatively, you can use the context menu.
All usages of the symbol will now be renamed, across files.
Read more about the VS Code Rename Symbol command.
Extension
Features
- Language Definition
- IntelliSense
- Code Navigation
- Refactoring
- Compilation
-
Debugging
- Debug View
- [Debug Console](Debug Console)
- [Assembly View](Assembly View)
Creation Engine
Language
Help