Skip to content

Commit

Permalink
Updating readme with new setting
Browse files Browse the repository at this point in the history
  • Loading branch information
LordBrom authored Feb 26, 2020
1 parent ce3c64c commit fb128f4
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,34 @@ For example, if `"ignore_case" : true` the following 2 lines will be counted as
1: <SomeTag></sOMeTag>
2: <sometag></someTag>
```


### 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.
``` html
1: 1
2: 1
3: 12
4: 12
5: 123
6: 123
7: 1234
8: 1234
```


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
```

0 comments on commit fb128f4

Please sign in to comment.