You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<h3class="font-weight-light">Setup the Workspace</h3>
61
61
<p>
62
-
VS Code Java works directly with <strong>folders</strong> that have source code. To setup the workspace, simply open a folder using File ><ahref="command:workbench.action.files.openFileFolder" data-os="win">Open Folder...</a><ahref="command:workbench.action.files.openFileFolder" data-os="mac">Open...</a>
62
+
VS Code Java works directly with <strong>folders</strong> that have source code. To setup the workspace, simply open a folder using File ><ahref="command:workbench.action.files.openFolder" data-os="win">Open Folder...</a><ahref="command:workbench.action.files.openFileFolder" data-os="mac">Open...</a>
@@ -86,7 +86,7 @@ <h3 class="font-weight-light">Run the program</h3>
86
86
<blockquoteclass="card-body">
87
87
<h5class="font-weight-light">How to Debug?</h5>
88
88
<pclass="mb-0">
89
-
When you press <ahref="command:workbench.action.debug.start"><kbd>F5</kbd></a>, you are already debugging. Try set some breakpoint by clicking on the line numbers before each code line and run the program again. You'll see the execution paused at the breakpoint.<br/>
89
+
When you press <ahref="command:workbench.action.debug.start"><kbd>F5</kbd></a>, you are already debugging. Try setting some breakpoint by clicking on the line numbers before each code line and run the program again. You'll see the execution paused at the breakpoint.<br/>
90
90
While debugging, switch to the <ahref="command:workbench.view.debug">Debug View</a> to see the variables and call stacks.
<ddclass="col-sm-9"><ahref="https://github.com/microsoft/vscode-java-pack/issues">vscode-java-pack</a> GitHub repo is recommended for openning bugs</dd>
321
+
<ddclass="col-sm-9"><ahref="https://github.com/microsoft/vscode-java-pack/issues">vscode-java-pack</a> GitHub repo is recommended for opening bugs</dd>
<ddclass="col-sm-9"><ahref="https://twitter.com/VSCodeJava">@VSCodeJava</a> is the handle to mention on twitter</dd>
324
324
</dl>
@@ -332,7 +332,7 @@ <h3 class="font-weight-light">Why do I see tons of problems and red squiggles?</
332
332
The problems are from VS Code Java when it tries to compile and build your codebase. If you experience this on your first use, it's possibly because of <strong>missing dependencies</strong>. To fix it, you probably want to start from fixing the project configuration files, e.g. <code>pom.xml</code> and <code>build.gradle</code>. After you make changes to those files, try <ahref="command:java.projectConfiguration.update">Update Project Configuration</a> and <ahref="command:java.workspace.compile">Force Compilation</a>.
333
333
</p>
334
334
<p>
335
-
It can also happen after you work with one project for a while. Try <ahref="command:java.clean.workspace">Clean Workspace</a> to get rid of any intermidiate output from the language server.
335
+
It can also happen after you work with one project for a while. Try <ahref="command:java.clean.workspace">Clean Workspace</a> to get rid of any intermediate output from the language server.
336
336
</p>
337
337
<p>
338
338
If the problem persists, follow the <ahref="https://github.com/redhat-developer/vscode-java/wiki/Troubleshooting">Troubleshooting Guide</a>. For advanced users, the <ahref="command:java.open.clientLog">Client Logs</a> and <ahref="command:java.open.serverLog">Server Logs</a> will definitely help you understand what is going on.
0 commit comments