Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 951 Bytes

intellij-howto.md

File metadata and controls

14 lines (10 loc) · 951 Bytes

IntelliJ ALS-Client

The following section demonstrates a quick example of how you can run the ALS as a pure LSP in IntelliJ

This example requires the ALS jar ready, Java 1.8 or newer in PATH, and IntelliJ LSP Plugin.

Steps

  1. With the IntelliJ LSP Plugin installed, go to Preferences -> Languages & Frameworks -> Language Server Protocol -> Server Definitions
  2. Add a new server as a Raw command, select the required extension (in this example raml), and insert the following command: java -jar /path/to/als-server.jar --systemStream IntelliJ Configuration --systemStream parameter communicates using the standard input/output mechanism instead of sockets.

Running

IntelliJ Example