Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump metals #1079

Merged
merged 1 commit into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ lazy val metalsRunner = project
maintainer := "scalacenter",
scalaVersion := ScalaVersions.stableLTS,
libraryDependencies ++= Seq(
"org.scalameta" % "metals" % "1.2.0" cross (CrossVersion.for3Use2_13),
"org.scalameta" % "metals" % "1.3.0" cross (CrossVersion.for3Use2_13),
"org.eclipse.lsp4j" % "org.eclipse.lsp4j" % "0.21.1",
"org.http4s" %% "http4s-ember-server" % "0.23.24",
"org.http4s" %% "http4s-ember-client" % "0.23.24",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class ScastieSymbolSearch(docs: Docstrings, classpathSearch: ClasspathSearch) ex
visitor: SymbolSearchVisitor
): SymbolSearch.Result = {
if query.nonEmpty then
classpathSearch.search(WorkspaceSymbolQuery.exact(query), visitor)
classpathSearch.search(WorkspaceSymbolQuery.exact(query), visitor)._1
else SymbolSearch.Result.INCOMPLETE
}

Expand All @@ -28,7 +28,7 @@ class ScastieSymbolSearch(docs: Docstrings, classpathSearch: ClasspathSearch) ex
visitor: SymbolSearchVisitor
): SymbolSearch.Result = {
if query.nonEmpty then
classpathSearch.search(WorkspaceSymbolQuery.exact(query), visitor)
classpathSearch.search(WorkspaceSymbolQuery.exact(query), visitor)._1
else SymbolSearch.Result.INCOMPLETE
}

Expand Down
Loading