Skip to content

Latest commit

 

History

History
37 lines (20 loc) · 1.9 KB

File metadata and controls

37 lines (20 loc) · 1.9 KB

Julia Language Server

To enable Julia language support in your IDE, you can integrate Julia Language Server by following these steps:

Julia LS demo

Install the language server

  1. install Julia. After that open a terminal and type julia: Julia command

  2. switch to Julia’s REPL by typing ] to install the DAP server with the command add LanguageServer Install Julia language server

  3. Open the New Language Server Dialog. This can usually be found under the IDE settings related to Language Server Protocol (LSP). For more information, refer to the New Language Server Dialog documentation.

  4. Select Julia Language Server as the template from the available options.

    Julia template

  5. Optional: You may also customize the mappings section according to your preferences.

    Julia LS template mappings

  6. Click OK to apply the changes. You should now have Julia language support enabled in your IDE:

    Julia LS in LSP Console

You could also configure server (you should have completion which will help you to configure server):

Julia LS configuration

Debugging

If you need to Run/Debug Julia program, you can configure the Julia DAP server.

Debugging / Threads