Skip to content
Oleg Shilo edited this page Mar 3, 2017 · 7 revisions

Welcome to the cs-script-sublime wiki!

The major plugin functionality covered in the project README.md

The in-depth overview of CS-Script that covers both stand-alone and hosted (by applications) execution can be found at its GitHub page


Note, Mac user may experience difficulties with running plugin due to the location of mono not being propagated into environment variable PATH. The problem can be easy detected by executing Context Menu > CS-Script > About:

If mono cannot be located the "about output" (above) will be truncated and consist of only two first lines. Such a truncation is caused by the plugin's inability to execute mono cscs.exe, which is responsible for printing the remaining part of the output content.

You can fix the problem by adding the directory location of the mono file into system environment variable PATH.

Alternatively, you can add the directory location to the plugin settings (User\cs-script.sublime-settings):

{
    "mono_path": "/usr/local/bin/mono"
}

In this case the plugin will add the path to the environment variable as per-process.

Clone this wiki locally