| Summary: | Indentation incorrect if formatting selection in XML file and first line is not selected completely | ||
|---|---|---|---|
| Product: | [WebTools] WTP Source Editing | Reporter: | Tobias Oberlies <t-oberlies> |
| Component: | wst.xml | Assignee: | wst.xml <wst.xml-inbox> |
| Status: | NEW --- | QA Contact: | Nick Sandonato <nsand.dev> |
| Severity: | normal | ||
| Priority: | P3 | CC: | stan |
| Version: | 3.3 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows Vista | ||
| Whiteboard: | |||
|
Description
Tobias Oberlies
In my case the selected has result indent always one tab (4 spaces in my case)
<dependencies>
^<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>$
ctrl+shift+F
An the result is:
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
|