angelcool.net
angelcool.net

Reputation: 2546

is it possible to easily merge two files like this in Sublime Text 2?

I have two files, the first one contains this:

companyName
url
country
address
zip
founders
industry
isPrivate

and the second one contains this:

:companyName
:url
:country
:address
:zip
:founders
:industry
:isPrivate

Is it possible to easily merge the contents of the second file into the first one so it looks like this:

companyName   :companyName
url           :url
country       :country
address       :address
zip           :zip
founders      :founders
industry      :industry
isPrivate     :isPrivate

Upvotes: 5

Views: 6578

Answers (1)

Daniel Figueroa
Daniel Figueroa

Reputation: 10666

Well, that depends on what you mean with easily merge. The way I'd go about to do it would be the following:

In the file with the commas, place the cursor at the beginning of the first line, hold alt+shift and press the down-arrow key until you reach the last line, this enables multiple cursors.

Press shift+end so that you mark all the contents on each line. Press ctrl+c to copy.

In the other file repeat the first procedure, enabling multiple cursors, but do not copy, instead press endso that you get the cursors to the end of each line, press tabor space to get most of the lines where you want them and then press ctrl+v.

Finally you'll need to fix some of the lines like the one containing zip.

Upvotes: 4

Related Questions