duplicate-finder packageA very simple VS Code extension to identify duplicated lines. Select lines where you want to list the lines appearring twice or more, press Cmd+Alt+L and it will print bellow the duplicated lines. It doesn't remove the duplicates, a lot of extensions are doing it well already. Example:List Duplicated lines with command "Duplicate Finder: Find and list duplicate lines" abc => cbd List Duplicated lines with number of duplicates with command "Duplicate Finder: Find, list and count duplicate lines" or shortcut Cmd+Alt+K or Ctrl+Alt+K: abc => cbd: 2 List single lines with command "Duplicate Finder: Find and list unique lines" abc => abc List all lines with number of duplicates with command "Duplicate Finder: Find, list and count all lines" abc => abc: 1 |