diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2020-12-10 01:00:16 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-10 01:00:16 +0100 |
| commit | cf435d5669eab8d8d97939c81bd661b3d4446ff7 (patch) | |
| tree | f30efa1fff8d77a214e2eef4bdf0c4062f131d9e /README.md | |
| parent | f42dcae0a1df0ff8b270cd32f7a21a8dba30b6af (diff) | |
Update README.md
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -6,6 +6,8 @@ Language server for Odin. This project is still in early development. - [Configuration](#Configuration) - [Features](#features) - [Clients](#clients) + - [Vs Code](#vs-code) + - [Sublime](#sublime) - [Known issues](#issues) - [Missing features](#missing-features) @@ -47,6 +49,34 @@ Example of ols.json: ### VS Code https://github.com/DanielGavin/ols-vscode +### Sublime +``` +{ + "clients": + { + "odin": + { + "command": + [ + "C:/path/to/ols" + ], + "enabled": true, + "languageId": "odin", + "scopes": + [ + "source.odin" + ], + "syntaxes": + [ + "Packages/odin/Odin.sublime-syntax" + ], + "initializationOptions": { "test": true } + } + }, + "only_show_lsp_completions": true, +} + +``` ## Issues All the current known issues are found [here](https://github.com/DanielGavin/ols/blob/master/know_issues.txt) |