Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser
Quick Information
Adds a VS Code style script tab bar to the Godot script editor, with close buttons and Ctrl+Tab navigation.
Script Tabs for Godot
Script Tabs for Godot is a small editor plugin that adds a custom script tab bar to the Godot script editor.
It allows you to keep opened scripts visible as tabs, similar to the workflow used in editors like Visual Studio Code.
Features
- Shows opened scripts as tabs inside the Godot script editor.
- Switches between scripts by clicking a tab.
- Closes script tabs using the close button.
- Supports keyboard navigation:
Ctrl + Tab: next script tabCtrl + Shift + Tab: previous script tab
Installation
Copy the addon folder into your Godot project:
addons/script_tabs/
Your project should look like this:
your_project/
addons/
script_tabs/
plugin.cfg
script_tabs_plugin.gd
Then enable the plugin in Godot:
Project > Project Settings > Plugins > Script Tabs > Enable
Usage
Open scripts from the FileSystem or from the script list.
Every opened script will appear in the custom script tab bar. Click a tab to switch to that script, or click the close button to remove it from the tab bar.
Keyboard Shortcuts
Ctrl + Tab
Switches to the next opened script tab.
Ctrl + Shift + Tab
Switches to the previous opened script tab.
Compatibility
Tested with Godot 4.6.3.
License
This project is licensed under the MIT License.
Adds a VS Code style script tab bar to the Godot script editor, with close buttons and Ctrl+Tab navigation.
Reviews
Quick Information
Adds a VS Code style script tab bar to the Godot script editor, with close buttons and Ctrl+Tab navigation.