Skip to content

Commit

Permalink
fix: lsp - filter out regal.debug codelens (#1345)
Browse files Browse the repository at this point in the history
  • Loading branch information
jglasovic authored Jan 16, 2025
1 parent 2c6ee8e commit 1eff70a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/lsp/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -1736,7 +1736,7 @@ func (l *LanguageServer) handleTextDocumentCodeLens(

for _, lens := range lenses {
if lens.Command.Command != "regal.debug" {
lenses = append(lenses, lens)
filteredLenses = append(filteredLenses, lens)
}
}

Expand Down

0 comments on commit 1eff70a

Please sign in to comment.