File tree Expand file tree Collapse file tree 3 files changed +25
-7
lines changed Expand file tree Collapse file tree 3 files changed +25
-7
lines changed Original file line number Diff line number Diff line change 4
4
[ ![ Release] ( https://img.shields.io/github/tag/shader-ls/vscode-shader.svg?label=release&logo=github )] ( https://github.com/shader-ls/vscode-shader/releases/latest )
5
5
6
6
# vscode-shader
7
- Shader languages support for Visual Studio Code
7
+ > Shader languages support for Visual Studio Code
8
+
9
+ ## 💾 Installation
10
+
11
+
12
+
13
+ ## 📇 Commands
14
+
15
+ | Commands | Description |
16
+ | :----------------------| :-----------------------------------|
17
+ | ` vscode-shader.start ` | Start the ` shader langauge server ` |
18
+ | ` vscode-shader.stop ` | Stop the ` shader langauge server ` |
19
+
20
+ ## 🔧 Configuration
21
+
22
+ | Name | Description |
23
+ | :--------------------------| :--------------------------------|
24
+ | ` ShaderLS.CompletionWord ` | True to enable word completion. |
25
+
Original file line number Diff line number Diff line change 32
32
"commands" : [
33
33
{
34
34
"command" : " vscode-shader.start" ,
35
- "title" : " Start `shader langauge server`"
35
+ "title" : " Start the `shader langauge server`"
36
36
},
37
37
{
38
38
"command" : " vscode-shader.stop" ,
39
- "title" : " Stop `shader langauge server`"
39
+ "title" : " Stop the `shader langauge server`"
40
40
}
41
41
],
42
42
"configuration" : {
43
43
"title" : " Shader LS" ,
44
44
"properties" : {
45
- "ShaderLab .CompletionWord" : {
45
+ "ShaderLS .CompletionWord" : {
46
46
"type" : " boolean" ,
47
- "description" : " Non-nil to enable word completion. " ,
47
+ "description" : " Ture to enable word completion" ,
48
48
"default" : true
49
49
}
50
50
}
76
76
"dependencies" : {
77
77
"vscode-languageclient" : " ^8.1.0"
78
78
}
79
- }
79
+ }
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ let client: LanguageClient;
16
16
// This method is called when your extension is activated
17
17
// Your extension is activated the very first time the command is executed
18
18
export function activate ( context : vscode . ExtensionContext ) {
19
- const serverExecutable = { command : 'shader-ls' , args : [ '--stdio' ] } ;
19
+ const serverExecutable = { command : 'D:/_workspace/LSP/shader-language-server/Server/bin/Debug/net7.0/ shader-ls' , args : [ '--stdio' ] } ;
20
20
21
21
const serverOptions : ServerOptions = {
22
22
run : serverExecutable ,
You can’t perform that action at this time.
0 commit comments