Page 1 of 1

File Comparator - Easier Copy Selected Lines

Posted: 09 May 2007, 18:49
by therube
File Comparator (Ctrl+Shift+C) - Easier Copy Selected Lines Method


Copying lines feels quirky at best.

An easier method of coping would be helpful. Perhaps left or right clicking the line number(s). Perhaps either user selected, and or difference selected lines. Also perhaps the ability to only copy the differences rather the entire line.

Maybe left-click the line number would be user selected line(s). And would also work in conjunction with Ctrl & Shift to select individual/range of lines.

Maybe right-click the line number would be difference selected line(s). Automatically selecting all the difference lines in one particular set of differences. Again with Ctrl & Shift modifiers.

Re: File Comparator - Easier Copy Selected Lines

Posted: 10 May 2007, 10:20
by KNUT
therube wrote:File Comparator (Ctrl+Shift+C) - Easier Copy Selected Lines Method [...]
Try WinMerge in the toolbar (usermenu) with the arguments:

Code: Select all

"$(FileToCompareLeft)" "$(FileToCompareRight)"

Re: File Comparator - Easier Copy Selected Lines

Posted: 12 Apr 2016, 04:34
by therube
Bump & add.

On a binary file, it would be nice to be able to copy a "textual representation" of the file contents.
As in, any copy operation quits when it hits a null byte ($00$).

So what I want to copy is:

Code: Select all

00 00 00 00   00 40 02 08  00
If I start my copy operation at the first $00$, I end up with nothing.
If I start at $40$ & continue, all I get is $40 02 08$ (it quits at the following $00$).

What I would like to get would be the textual representation, so: $00 00 00 00 00 40 02 08 00$

And further with options to include the hex part, the "text" part, & then only left, only right, or both panels.

IOW I like to be able to get a "textual" representation of this:

Image


(BTW, WinMerge has the same failing in this case, can copy but only up the the null byte.)