├── .gitignore ├── .travis.yml ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── resources └── META-INF │ ├── change-notes.html │ ├── description.html │ └── plugin.xml └── src └── org └── jetbrains └── contest └── keypromoter ├── ConfigurationPanel.form ├── KeyPromoter.java ├── KeyPromoterConfiguration.java ├── KeyPromoterPersistentStats.java ├── KeyPromoterSettings.java ├── KeyPromoterToolWindowBuilder.form ├── KeyPromoterToolWindowBuilder.java ├── KeyPromoterToolWindowFactory.java ├── KeyPromoterUtils.java └── TipWindow.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/gradlew.bat -------------------------------------------------------------------------------- /resources/META-INF/change-notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/resources/META-INF/change-notes.html -------------------------------------------------------------------------------- /resources/META-INF/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/resources/META-INF/description.html -------------------------------------------------------------------------------- /resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/org/jetbrains/contest/keypromoter/ConfigurationPanel.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/src/org/jetbrains/contest/keypromoter/ConfigurationPanel.form -------------------------------------------------------------------------------- /src/org/jetbrains/contest/keypromoter/KeyPromoter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/src/org/jetbrains/contest/keypromoter/KeyPromoter.java -------------------------------------------------------------------------------- /src/org/jetbrains/contest/keypromoter/KeyPromoterConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/src/org/jetbrains/contest/keypromoter/KeyPromoterConfiguration.java -------------------------------------------------------------------------------- /src/org/jetbrains/contest/keypromoter/KeyPromoterPersistentStats.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/src/org/jetbrains/contest/keypromoter/KeyPromoterPersistentStats.java -------------------------------------------------------------------------------- /src/org/jetbrains/contest/keypromoter/KeyPromoterSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/src/org/jetbrains/contest/keypromoter/KeyPromoterSettings.java -------------------------------------------------------------------------------- /src/org/jetbrains/contest/keypromoter/KeyPromoterToolWindowBuilder.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/src/org/jetbrains/contest/keypromoter/KeyPromoterToolWindowBuilder.form -------------------------------------------------------------------------------- /src/org/jetbrains/contest/keypromoter/KeyPromoterToolWindowBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/src/org/jetbrains/contest/keypromoter/KeyPromoterToolWindowBuilder.java -------------------------------------------------------------------------------- /src/org/jetbrains/contest/keypromoter/KeyPromoterToolWindowFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/src/org/jetbrains/contest/keypromoter/KeyPromoterToolWindowFactory.java -------------------------------------------------------------------------------- /src/org/jetbrains/contest/keypromoter/KeyPromoterUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/src/org/jetbrains/contest/keypromoter/KeyPromoterUtils.java -------------------------------------------------------------------------------- /src/org/jetbrains/contest/keypromoter/TipWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halirutan/IntelliJ-Key-Promoter/HEAD/src/org/jetbrains/contest/keypromoter/TipWindow.java --------------------------------------------------------------------------------