aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanielGavin <danielgavin5@hotmail.com>2020-12-10 01:00:16 +0100
committerGitHub <noreply@github.com>2020-12-10 01:00:16 +0100
commitcf435d5669eab8d8d97939c81bd661b3d4446ff7 (patch)
treef30efa1fff8d77a214e2eef4bdf0c4062f131d9e
parentf42dcae0a1df0ff8b270cd32f7a21a8dba30b6af (diff)
Update README.md
-rw-r--r--README.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/README.md b/README.md
index 1e9bc75..5e99f1f 100644
--- a/README.md
+++ b/README.md
@@ -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)