Skip to content

Remove Duplicate Selections

Removes duplicate selections :) Look at the example.

Example

Symbol Meaning
| Caret
[ ] Selection

Before

[String a = "Hello World"]|
[String b = "Hello World"]|
[String c = "Hello World"]|
[String a = "Hello World"]|
[String a = "Hello World"]|
[String a = "Hello World"]|
[String d = "Hello World"]|

After

[String a = "Hello World"]|
[String b = "Hello World"]|
[String c = "Hello World"]|
|
|
|
[String d = "Hello World"]|