zeroc-ice / vscode-slice

Slice syntax highlighter for Visual Studio Code
BSD 3-Clause "New" or "Revised" License
5 stars 4 forks source link

Slice for Visual Studio Code

This language extension adds support for highlighting Slice files within Visual Studio Code. It supports highlighting the following file types:

Additionally, this extension provides a Slice Language Server, for .slice files only.

Configuration

The Slice Language Server can be configured using the following settings:

Example

{
    "slice.configurations": [
        {
            "paths": [
                "path/to/slice/directory",
                "path/to/other/slice/file.slice",
                "/absolute/path/to/directory"  
            ],
            "addWellKnownTypes": true
        }
    ]
}