ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Copy Paste Killer

by kyamaguchi ST3

Sublime text 3 plugin to help to refactor duplicated code

Details

Installs

  • Total 212
  • Win 133
  • Mac 61
  • Linux 18
Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11
Windows 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

CopyPasteKiller Plugin

Sublime text 3 plugin to help to refactor duplicated code.

This command sets snippets for “Find and Replace” with regular expression.
You can find any code blocks without caring about indentation and some differences like variable names.
You can replace those matches with refactored code by changing the given 'replace_string' and hitting “Replace”.

0x_git_diff

Usage:

You can declare shortcut like:

{ "keys": ["ctrl+shift+i"], "command": "copy_paste_killer" }

Guide

Select lines

01_select_lines

Run “copy_paste_killer” command

The snippets for “Find” and “Replace” are set

You could configure whether to open panels or not with settings keep_panels_open

02_run_copy_paste_killer

Change the snippet for “Find”

Find parts which have variations(e.g. variable name) in the snippet for “Find” and select them

03_edit_find_string

Replace variables with Regex

Replace variable name parts with Regex in the snippet for “Find”
You can name regex groups as you want

The typical format to name regex group is (?<name>.*)

Copy the snippet into “Find:”
“Select All ⌘A” -> “Use Selection for Find ⌘E”

04_change_variable_to_regex

Hit “Find” and confirm matches

You can find duplicated codes even if they have different indents and different variable names

05_confirm_find

Change the snippet for “Replace”

Change the snippet for “Replace” using regex groups named in “Find”
The format is $+{name}

Copy the snippet into “Replace:”
“Select All ⌘A” -> “Use Selection for Replace ⇧⌘E”

06_edit_replace_string

Hit “Replace” and confirm changes

Hit “Replace” and confirm if changes are expected

07_replace_matches

Check changes

Check changes with git diff

Reset(Undo) changes with git checkout etc if replacements were wrong

08_git_diff

Settings

keep_panels_open (default true) - Configure whether to open panels for snippets or not

Test

UnitTesting plugin

Use UnitTesting plugin

  • Open tests/test_copy_paste_killer_selection_converter.py
  • Open “Command Palette…” (⇧⌘P)
  • Run “UnitTesting: Test Current File”

Test scenarios

  • “tests/data/*_source.txt” -> Expected snippet for selection
  • “tests/data/*_find.txt” -> Expected snippet for find_string
  • “tests/data/*_replace.txt” -> Expected snippet for replace_string

Manual testing

Any selection shouldn't change with “copy_paste_killer” command and “Find” and “Replace” when replace_string isn't changed.