Intellij IDEA plugin for RAML

I just started using RAML in my Java project. I use Intellij IDEA, and there my RAML file is displayed as raw text without text selection. It does not seem to recognize this type of file at all.

Is there any plugin for RAML in Intellij IDEA?

Basically I tried google and also checked in the list of plugins . If the plugin does not exist, what would you suggest? It seems that then I will need to use some other tool to modify this file correctly.

+4
source share
3 answers

There is a plugin plugin Raml Intellij . It is still in beta, but you can use it. You can download directly from Intellij Repositories

+2
source

RESTful API Modeling Language (RAML) is a YAML-based language for describing RESTful APIs.

Intellij has a plugin for YAML syntax, so you can use it for RAML.

  • Just go to settings -> Editor -> File Types.

  • Then, in the "Recognized file types" section, simply scroll down to YAML and select it.

  • Now just add * .raml and * .rml to the Registered Templates section and you will get syntax highlighting.

+4
source

Source: https://habr.com/ru/post/1619323/


All Articles