Wir benutzen mächtige Werkzeuge fürs Programmieren und setzen Syntax Highlighting, Code-Completion, Navigation, Referenzsuche und automatisiertes Refactoring schon selbstverständlich voraus. Massiver Produktivitätsgewinn. Aber da geht noch viel mehr. Wir erweitern unsere Werkzeuge selber oder bauen neue. Wir zeigen an einem realen Projekt, wie man eigene Produktivitätswerkzeuge mit der IntelliJ-Plattform entwickelt, die es vorher noch nicht gab. Inklusive Abstract Syntax Tree, Parser, Lexer, Syntaxanalyse, Semantische Analyse und ganz vielen Pattern.
Schritte zum minimalen Setup:
- Verwendung des IntelliJ Platform Plugin Template
- Definition einer Sprache und Registrierung zugehöriger Dateitypen
- Definition eines Lexer und Parsers
- Generierung von Lexer und Parser
- Registrierung von Lexer und Parser
- Implementierung eines einfachen Syntax-Highlighters
- Definition von benannten Elementen
- Auflösung von Referenzen für Navigation und Rename-Refactoring
- Create a new IntelliJ Platform Plugin Template project.
- Get familiar with the template documentation.
- Verify the pluginGroup, plugin ID and sources package.
- Review the Legal Agreements.
- Publish a plugin manually for the first time.
- Set the Plugin ID in the above README badges.
- Set the Deployment Token.
- Click the Watch button on the top of the IntelliJ Platform Plugin Template to be notified about releases containing new features and fixes.
This Fancy IntelliJ Platform Plugin is going to be your implementation of the brilliant ideas that you have.
This specific section is a source for the plugin.xml file which will be extracted by the Gradle during the build process.
To keep everything working, do not remove <!-- ... -->
sections.
-
Using IDE built-in plugin system:
Settings/Preferences > Plugins > Marketplace > Search for "buntenacht-addR" > Install Plugin
-
Manually:
Download the latest release and install it manually using Settings/Preferences > Plugins > ⚙️ > Install plugin from disk...
Plugin based on the IntelliJ Platform Plugin Template.