Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

How to use the Atom Editor with KRL

Install the editor from the atom.io page.

You will probably want to install the popular community package atom-ide-ui which allows parsing errors to be shown while editing program text.

To install the KRL Language Server package, navigate to the atom packages folder and perform the following steps (adapt for your system; these steps are in bash on a Macbook):

cd ~/.atom/packages
git clone git@github.com:Picolab/ide-krl.git
cd ide-krl/
rmdir krl-language-server/ #because it is empty
git clone git@github.com:Picolab/krl-language-server.git
cd krl-language-server/
npm install
npm run compile
cd ..
npm install

With these packages installed, when you edit a .krl file, you will have syntax highlighting, completion hints, and in-line parsing error messages.

  • No labels