Skip to content

Commit

Permalink
move .vscode into editor/
Browse files Browse the repository at this point in the history
  • Loading branch information
nvarner authored and LighghtEeloo committed Mar 6, 2024
1 parent c07bfca commit 8e91fe7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions editor/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
!.vscode/
4 changes: 2 additions & 2 deletions .vscode-template/launch.json → editor/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/editor/code/zls"
"--extensionDevelopmentPath=${workspaceFolder}/code/zls"
],
"outFiles": [
"${workspaceFolder}/editor/code/zls/out/**/*.js"
"${workspaceFolder}/code/zls/out/**/*.js"
],
"preLaunchTask": "VS Code Extension Prelaunch"
}
Expand Down
14 changes: 7 additions & 7 deletions .vscode-template/tasks.json → editor/.vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"label": "Compile VS Code Extension",
"type": "npm",
"script": "compile",
"path": "editor/code/zls",
"path": "code/zls/",
"group": "build"
},
{
Expand All @@ -26,22 +26,22 @@
"windows": {
"command": "cp",
"args": [
"${workspaceFolder}\\target\\debug\\zls.exe",
"${workspaceFolder}\\editor\\code\\zls\\out\\"
"${workspaceFolder}\\..\\target\\debug\\zls.exe",
"${workspaceFolder}\\code\\zls\\out\\"
]
},
"linux": {
"command": "cp",
"args": [
"${workspaceFolder}/target/debug/zls",
"${workspaceFolder}/editor/code/zls/out/"
"${workspaceFolder}/../target/debug/zls",
"${workspaceFolder}/code/zls/out/"
]
},
"osx": {
"command": "cp",
"args": [
"${workspaceFolder}/target/debug/zls",
"${workspaceFolder}/editor/code/zls/out/"
"${workspaceFolder}/../target/debug/zls",
"${workspaceFolder}/code/zls/out/"
]
}
}
Expand Down

0 comments on commit 8e91fe7

Please sign in to comment.