Skip to content

Commit

Permalink
Update readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
LordBrom authored Jan 27, 2018
1 parent 1959ceb commit 468bea1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,27 +50,27 @@ _Note:_ By default neither of these commands have a key binding, and can only be

## Options

### Change the highlighting color
`Default: invalid`
### Change The Highlighting Color
`Default: "invalid"`

The highlighting color can be changed by providing a scope name such
as "invalid", "comment"... in "File Settings - User":
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
### Trim White Space
`Default: true`

If this setting is true, the leading and trailing whitespace will be removed before being compared to other lines. This setting also affects which lines are selected when using the 'Select Duplicates' command.
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: <someTag></someTag>
2: <someTag></someTag>
```
However, these lines would not, since there is white space in line 1, that is not leading or trailing whitespace, which is not in line 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>
Expand All @@ -80,7 +80,7 @@ However, these lines would not, since there is white space in line 1, that is no
### Ignore Case
`Default: false`

If this setting is true, upper and lower case letters will be concidered the same. This setting also affects which lines are selected when using the 'Select Duplicates' command.
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
Expand Down

0 comments on commit 468bea1

Please sign in to comment.