sublimetext2 - Replace by a list in Sublime Text 2 -


i want replace list of word flipiny different word each occurrence. example, have this:

flipiny flipiny flipiny flipiny flipiny flipiny flipiny flipiny flipiny flipiny 

i want become this:

bounce flash pulse rubberband shake headshake swing tada wobble jello 

is there way automatically sublime?

you can series of built-in shortcuts.

  1. type list editor, each item on own line:

    bounce flash pulse rubberband shake headshake swing tada wobble jello 
  2. select (ctrl + a / super + a).

  3. split selection lines (ctrl + shift + l / super + shift + l). creates cursor on each line. in case, should have 10 cursors.
  4. copy.
  5. in file flipinys, find , select every instance. can opening find panel, typing in flipiny, , clicking find all (or alt+enter). note won't work unless have same number of occurrences of flipiny. in case, there should 10.
  6. paste.

Comments