Skip to content

Commit 234304f

Browse files
committed
Use scala-lang.scala for syntax highlighting
1 parent 7dc2226 commit 234304f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

project/Build.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -982,10 +982,10 @@ object Build {
982982
val tsc = workingDir / "node_modules" / ".bin" / "tsc"
983983
runProcess(Seq(tsc.getAbsolutePath, "--pretty", "--project", workingDir.getAbsolutePath), wait = true)
984984

985-
// Currently, vscode-dotty depends on daltonjorge.scala for syntax highlighting,
985+
// vscode-dotty depends on scala-lang.scala for syntax highlighting,
986986
// this is not automatically installed when starting the extension in development mode
987987
// (--extensionDevelopmentPath=...)
988-
runProcess(codeCommand.value ++ Seq("--install-extension", "daltonjorge.scala"), wait = true)
988+
runProcess(codeCommand.value ++ Seq("--install-extension", "scala-lang.scala"), wait = true)
989989

990990
sbt.internal.inc.Analysis.Empty
991991
},

vscode-dotty/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"postinstall": "node ./node_modules/vscode/bin/install && curl -L -o out/coursier https://github.com/coursier/coursier/raw/v1.0.3/coursier"
5454
},
5555
"extensionDependencies": [
56-
"daltonjorge.scala"
56+
"scala-lang.scala"
5757
],
5858
"dependencies": {
5959
"child-process-promise": "^2.2.1",

0 commit comments

Comments
 (0)