Skip to content

Commit fd93b46

Browse files
authored
Merge pull request #5105 from dotty-staging/topic/upgrade-vscode-syntax
Use `scala-lang.scala` for syntax highlighting
2 parents e4735d2 + 06befdc commit fd93b46

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
@@ -992,10 +992,10 @@ object Build {
992992
val tsc = workingDir / "node_modules" / ".bin" / "tsc"
993993
runProcess(Seq(tsc.getAbsolutePath, "--pretty", "--project", workingDir.getAbsolutePath), wait = true)
994994

995-
// Currently, vscode-dotty depends on daltonjorge.scala for syntax highlighting,
995+
// vscode-dotty depends on scala-lang.scala for syntax highlighting,
996996
// this is not automatically installed when starting the extension in development mode
997997
// (--extensionDevelopmentPath=...)
998-
installCodeExtension(codeCommand.value, "daltonjorge.scala")
998+
installCodeExtension(codeCommand.value, "scala-lang.scala")
999999

10001000
sbt.internal.inc.Analysis.Empty
10011001
}.dependsOn(managedResources in Compile).value,

vscode-dotty/package.json

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

0 commit comments

Comments
 (0)