Skip to content

Commit

Permalink
Merge pull request #497 from pvid/pv-fix-port-placeholder
Browse files Browse the repository at this point in the history
Fix remote debug port placeholder
  • Loading branch information
tgodzik authored Feb 5, 2021
2 parents cb1b43a + 0a3602d commit 7984435
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scalaDebugger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ class ScalaConfigProvider implements vscode.DebugConfigurationProvider {
return vscode.window
.showInputBox({
prompt: "Enter port to attach to",
placeHolder: "localhost",
placeHolder: "5005",
})
.then((port) => port ?? Promise.reject())
.then((port) => parseInt(port));
Expand Down

0 comments on commit 7984435

Please sign in to comment.