Turbocharge your Dear ImGui workflow with smart color editing + auto-formatting!
- Click gutter icons to modify colors directly in your code
- Supports all ImGui color formats:
ImColor(255, 0, 0) // Integer RGB ImVec4(1.0f, 0.5f, 0.0f, 1.0f) // Float RGBA float[4]{0.2f, 0.2f, 0.2f, 1.0f} // Array style
Same color picker we all love from IntelliJ IDE when working with jawa.awt.Color
Automatic line breaks for ImGui blocks:
- Proper indentation for widget hierarchies
- Formatting preserves your code style
This code:
ImGui::Begin("Window"); {user_enter}
Will be autmatically formatted to this:
ImGui::Begin("Window");
{
{user_cursor_will_be_set_here}
}
ImGui::End();
Marketplace: Not Uploaded yet. Manual:
- Download the .jar from releases
- Go in your plugins window
- Press the gear icon and select install from disk
- Select the .jar
- Primary IDE: CLion (other JetBrains IDEs may work)
- Languages: C/C++
- ImGui Versions: Works with all Dear ImGui versions