DevoxxGenieIDEAPlugin icon indicating copy to clipboard operation
DevoxxGenieIDEAPlugin copied to clipboard

[FEATURE] Set default file extensions to be included based on IDEA type

Open mydeveloperplanet opened this issue 1 year ago • 1 comments

The default file extensions in the settings page contain many file extensions. It should default based on the IDEA type: IntelliJ, Webstorm, CLion, etc.

This can be done via the following check:

import com.intellij.util.PlatformUtils;
boolean isIntelliJ = PlatformUtils.isIntelliJ();

TBD:

  • list of product types and default extensions needs to be created.
  • how to test and verify this

mydeveloperplanet avatar Oct 12 '24 11:10 mydeveloperplanet

Product extensions
IntelliJ tsx, jsx
Webstorm tsx, jsx

mydeveloperplanet avatar Oct 12 '24 12:10 mydeveloperplanet