Highlight Duplicates
Highlight duplicated lines in SublimeText 3
Details
Installs
- Total 10K
- Win 5K
- Mac 3K
- Linux 1K
Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 7 | 3 | 2 | 1 | 5 | 2 | 9 | 5 | 5 | 6 | 4 | 2 | 9 | 2 | 6 | 1 | 0 | 2 | 3 | 4 | 4 | 2 | 5 | 6 | 1 | 1 | 3 | 5 | 3 | 3 | 2 | 2 | 0 | 5 | 10 | 7 | 5 | 2 | 3 | 1 | 10 | 7 | 13 | 6 | 2 |
Mac | 0 | 5 | 2 | 4 | 0 | 1 | 3 | 3 | 4 | 5 | 2 | 1 | 4 | 1 | 4 | 2 | 2 | 1 | 1 | 0 | 0 | 3 | 2 | 2 | 4 | 1 | 2 | 3 | 1 | 2 | 1 | 1 | 1 | 1 | 2 | 1 | 3 | 5 | 1 | 0 | 2 | 3 | 9 | 1 | 1 | 2 |
Linux | 0 | 2 | 2 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 2 | 0 | 1 | 0 | 1 | 0 | 1 | 3 | 1 | 0 | 2 | 2 | 2 | 0 | 1 | 2 | 1 | 1 | 1 | 0 | 4 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 2 | 3 | 0 | 1 | 2 | 0 | 2 | 2 |
Readme
- Source
- raw.githubusercontent.com
Highlight Duplicates
Highlight duplicated lines. This is a Sublime Text 3 (and ST2) plugin.
Installation
Using Package Control (installation instructions)
Press ctrl+shift+p (cmd+shift+p for OSX), then use the 'Package Control: Install Package' command.
Search for 'HighlightDuplicates', and press enter to install.
Manually
Go to your Packages
subdirectory under ST3's data directory:
- Windows:
%APPDATA%\Sublime Text 3
- OS X:
~/Library/Application Support/Sublime Text 3/Packages
- Linux:
~/.config/sublime-text-3
- Portable Installation:
Sublime Text 3/Data
Then clone this repository:
git clone git://github.com/lordbrom/HighlightDuplicates.git
That's it!
Commands
Toggle Highlighting
Using this command will turn the plugin on and off. This allows you to see the highlighted only when you want without having to disable/enable to plugin via the Package Control.
Select Duplicates
Using this command will select the rows that would be highlighted when Highlight Duplicates is toggled on. The duplicate rows do not need to be highlighted in order for this command to work.
Remove Duplicates
Using this command will remove all duplicate lines, after the first instance, from the file. This command is similar to the build in “Permute Lines > Unique” function found in the Edit menu, however this will follow the plugin's settings for what is considered a duplicate.
For example…
1: <someTag></someTag>
2: Content
3: <someTag></someTag>
4:
Would result in
1: <someTag></someTag>
2: Content
3:
Note: By default none of these commands have a key binding, and can only be used via the Command Palette. You can set a key binding by adding any of the following lines to the key binding file. (Preferences > Key Bindings)
{ "keys": ["alt+shift+h"], "command": "toggle_highlight_duplicates" }
{ "keys": ["alt+shift+s"], "command": "toggle_select_duplicates" }
{ "keys": ["alt+shift+r"], "command": "remove_duplicates" }
Options
Change The Highlighting Color
Default: "invalid"
The highlighting color can be changed by providing a scope name such as “invalid”, “comment”, etc…
If you'd like to use a custom color, it should be defined as a color scope in your theme file.
Trim White Space
Default: true
If this setting is true, the leading and trailing white space will be removed before being compared to other lines. This setting also affects which lines are selected when using the 'Select Duplicates' command.
For example, if "trim_white_space" : true
the following 2 lines will be counted as duplicates.
“ html
1:
2:
However, the following lines would not be counted as duplicates. The reason for this is because there is white space in line 1 that is not leading or trailing, which does not appear in line 2.
``` html
1: <someTag> </someTag>
2: <someTag></someTag>
Ignore Case
Default: false
If this setting is true, upper and lower case letters will be considered the same. This setting also affects which lines are selected when using the 'Select Duplicates' command.
For example, if "ignore_case" : true
the following 2 lines will be counted as duplicates.
” html
1:
2:
### Min Line Length
`Default: 4`
Lines with fewer characters than specified in this setting, will be ignored for all functions. Setting this to 1 will cause all non empty lines to be possible duplicates.
For example, by default, only lines 7 and 8 will be selected when using the "select duplicate" command. If this setting is set to 2, all the lines except lines 1 and 2 will be selected when using the "select duplicate" command.
``` html
1: 1
2: 1
3: 12
4: 12
5: 123
6: 123
7: 1234
8: 1234