Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gabrielcolson/intellij-prisma
Prisma Schema Language support for WebStorm, GoLand, and other IDEs based on IntelliJ Platform.
https://github.com/gabrielcolson/intellij-prisma
Last synced: 3 months ago
JSON representation
Prisma Schema Language support for WebStorm, GoLand, and other IDEs based on IntelliJ Platform.
- Host: GitHub
- URL: https://github.com/gabrielcolson/intellij-prisma
- Owner: gabrielcolson
- Created: 2020-05-02T23:22:00.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-23T19:25:52.000Z (over 2 years ago)
- Last Synced: 2024-05-07T20:34:17.975Z (6 months ago)
- Language: Java
- Homepage: https://plugins.jetbrains.com/plugin/14240-prisma
- Size: 151 KB
- Stars: 42
- Watchers: 2
- Forks: 10
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-prisma - Prisma plugin for the IntelliJ Platform
README
# Prisma plugin for the IntelliJ Platform
Prisma Schema Language support for WebStorm, GoLand, and other IDEs based on IntelliJ Platform.
## Installation
This plugin is available in the JetBrains marketplace. Open
`Settings > Plugins > Marketplace` in your IDE, search for _Prisma_
and install the plugin.## Features
For now, this plugin only provides syntax highlighting but more are yet to come:
- autocompletion
- _go to definition_ and refactoring
- color settings page
- anything you want! Just create an issue ;)## Development
This plugin is built using [JetBrains' Grammar-Kit](https://github.com/JetBrains/Grammar-Kit), after cloning, follow
their [general usage instructions](https://github.com/JetBrains/Grammar-Kit#general-usage-instructions) to generate the
relevant Java classes. Make sure to install the Grammar Kit Plugin for IntelliJ!The files defining the Prisma schema language can be found under `src/main/java/org/intellij/sdk/language/Prisma.bnf`
and `src/main/java/org/intellij/sdk/language/Prisma.flex`For more information on how to build and test your plugin, see the
[Building Plugins with Gradle Guide](https://plugins.jetbrains.com/docs/intellij/gradle-build-system.html).