forked from redhat-developer/vscode-xml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid duplication of documentation between extension and wiki
Fixes redhat-developer#331 Signed-off-by: azerr <[email protected]>
- Loading branch information
1 parent
4f002c9
commit 9c2d179
Showing
7 changed files
with
75 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# XML Documentation | ||
|
||
Welcome to the [vscode-xml](https://github.com/redhat-developer/vscode-xml) documentation. | ||
|
||
## User Guide | ||
|
||
As [vscode-xml](https://github.com/redhat-developer/vscode-xml) consumes the [LemMinX XML Language Server](https://github.com/eclipse/lemminx) written in `Java`, it requires `Java`. Please start reading [here](Preferences.md#java-home). | ||
|
||
* [XML Validation](Validation.md#xml-validation): How to validate XML with a grammar (XSD/DTD)? | ||
* [Preferences](Preferences.md#preferences): More info on available [vscode-xml](https://github.com/redhat-developer/vscode-xml) preferences. | ||
* [Formatting](Formatting.md#formatting): More info on the available formatting preferences. | ||
* [Troubleshooting](Troubleshooting.md#troubleshooting): Info on troubleshooting and fixes to issues. | ||
|
||
## Developer Guide | ||
|
||
* [Extensions](Extensions.md#extensions): How to extend vscode-xml settings and XML features (completion, validation, hover, etc)? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Troubleshooting | ||
|
||
## Issues | ||
|
||
Please create [vscode-xml issues](https://github.com/redhat-developer/vscode-xml/issues) for any problem. | ||
|
||
### No support on xml file. | ||
|
||
Sometimes an old instance of the XML Language Server is still running. | ||
|
||
You can check if the server is not working in VSCode by going to: | ||
1) Turning on `xml.trace.server` in the VSCode preferences | ||
2) `View -> Output -> XML Support` (drop down menu top right) | ||
If it is not working it will indicate the server has Shutdown. | ||
|
||
You can kill the process by: | ||
|
||
1) Run `jps` command in terminal | ||
2) Check if multiple instances of `org.eclipse.lemminx-uber.jar` or `XMLServerLauncher` | ||
3) According to your OS: | ||
|
||
* on Windows OS: run `taskkill /F /PID ...` all instances | ||
* on other OS: run `kill -9 ...` all instances |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters