├── .cursor └── rules │ ├── build-and-deployment.mdc │ ├── code-structure.mdc │ ├── common-tasks.mdc │ ├── development-guidelines.mdc │ └── project-overview.mdc ├── .run ├── Run Plugin.run.xml ├── Run Tests.run.xml └── Run Verifications.run.xml ├── CHANGELOG.md ├── README.md ├── github └── chineseTypography.gif ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── qodana.yml └── src └── main ├── kotlin └── com │ └── uptmr │ └── typography │ ├── TransitionAction.kt │ └── utils │ └── RegexExpressionUtils.kt └── resources └── META-INF ├── plugin.xml └── pluginIcon.svg /.cursor/rules/build-and-deployment.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/.cursor/rules/build-and-deployment.mdc -------------------------------------------------------------------------------- /.cursor/rules/code-structure.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/.cursor/rules/code-structure.mdc -------------------------------------------------------------------------------- /.cursor/rules/common-tasks.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/.cursor/rules/common-tasks.mdc -------------------------------------------------------------------------------- /.cursor/rules/development-guidelines.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/.cursor/rules/development-guidelines.mdc -------------------------------------------------------------------------------- /.cursor/rules/project-overview.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/.cursor/rules/project-overview.mdc -------------------------------------------------------------------------------- /.run/Run Plugin.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/.run/Run Plugin.run.xml -------------------------------------------------------------------------------- /.run/Run Tests.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/.run/Run Tests.run.xml -------------------------------------------------------------------------------- /.run/Run Verifications.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/.run/Run Verifications.run.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /github/chineseTypography.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/github/chineseTypography.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /qodana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/qodana.yml -------------------------------------------------------------------------------- /src/main/kotlin/com/uptmr/typography/TransitionAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/src/main/kotlin/com/uptmr/typography/TransitionAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/uptmr/typography/utils/RegexExpressionUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/src/main/kotlin/com/uptmr/typography/utils/RegexExpressionUtils.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judasn/ChineseTypography-IDEA-Plugin/HEAD/src/main/resources/META-INF/pluginIcon.svg --------------------------------------------------------------------------------