Tagged Questions
3
votes
1answer
47 views
VIM - Passing colon-commands list via command-line
Good day,
I am writing a simple script within my BASHRC file to accommodate something I couldn't quite resolve in a previous question:
Side-by-side view in Vim of svn-diff for entire directory
I ...
0
votes
1answer
47 views
diff - find specific change between two values in hex dump
Good day,
I am analyzing hex data from binary data dumps from a basic command-line program of mine. I'm basically dumping the exact contents of a struct (a large array of structs, actually) to a text ...
2
votes
1answer
112 views
View “cvs diff” output in two columns with vim
I have "cvs diff" output (for all files in project) in unified diff format.
Format could be like this:
Index: somefile.cpp
===================================================================
RCS ...
3
votes
1answer
171 views
Using vim as git difftool
I've configured Vim as git difftool in .gitconfig
[diff]
tool = vimdiff
If there are changes in N files, i have to close vim (:qa) to see the next diff.
How do i navigate to the next/previous ...
4
votes
1answer
127 views
Viewing differences of more than than one pair of files using vimdiff
vimdiff shows differences between two or more of same files. Is it possible to see differences of two pairs of files. For eg, when viewing differenes in .H files and .C file, it will be convenient to ...
2
votes
2answers
462 views
Using Preview on Mac, why does simply saving a PDF over itself with no changes made completely change the file's contents?
I have a 3 page PDF file open in Preview on the Mac. If I make no changes to the file, hit cmd-s and save the file, the binary content of the file changes heavily. Why is this?
I can tell this is the ...
0
votes
1answer
104 views
Is there a way to view two diffs in one vim tab?
I know that the diffs in vim are local to page, this means we can only have one diff in one tab page, right? But what if I want to have two diffs in one tab page. Eg, one diff is between the top two ...
3
votes
1answer
1k views
Vimdiff: How to put all changes inside a particular function from one file to another?
In Vimdiff, I know I can use "do" or "dp" to move changes from one file to the other...but these are for individual changes. If I have to undo all changes inside a specific scope/selection (say undo ...
83
votes
3answers
27k views
Vimdiff: What are the most frequently used commands/shortcuts that could get a newbie started?
I've started using vimdiff today, and wanted to do some of the things that I've taken for granted on Windows based diff editors (like expand/collapse a diff section, have full file expansion/only ...
4
votes
3answers
2k views
How to ignore some differences in diff command?
diff has an option -I regexp, which ignores changes that just insert or delete lines that match the given regexp. I need an analogue of this for the case, when changes are between two lines (rather ...
3
votes
2answers
358 views
Take diff of two vertical opened windows in Vim
I've have two files opened. They are opened in vertical mode, next to next. Can I instantly diff these two files without leaving or closing Vim ?
55
votes
2answers
13k views
Viewing all `git diffs` with vimdiff
I have setup git diff to wrap into vimdiff (using this guide) and it's working as expected unless there are many files with changes. When there are multiple files with changes and I run git diff, it ...
18
votes
4answers
1k views
(Vim)diff two subroutines in same file
Is it possible to diff or even vimdiff two almost similar subroutines which occur in the same file? If so, how?
I can think of copying the two subroutines in two separate files and then diff them, ...
3
votes
3answers
6k views
vimdiff as a merge tool
vimdiff helps in showing the diff of two files graphically and allows us to pick the changes from left to right/right to left.
The files I am dealing with are huge files and most of the differences ...
9
votes
2answers
776 views
Using vimdiff with a different .vimrc?
I've been using Vim now for most of my editing for the last week or so and I'm loving the experience. However I have an issue.
I've setup my .vimrcfile with NERD_tree and a few other goodies. This ...
1
vote
2answers
1k views
How to get vimdiff to display output from cvs diff --side-by-side
CVS diff has the option to display revisions side by side and denote diffs with usual patch symbols like:
import zlib import zlib
...
17
votes
3answers
4k views
Is there a way to configure vimdiff to ignore ALL whitespaces?
I'm using vim -d file1 file2 in order to see the differences between them. This works fine, but I want to ignore whitespace changes - they are irrelevant for source code files.
Vim help states that ...
41
votes
2answers
8k views
Diff two tabs in Vim
Scenario: I have opened Vim and pasted some text. I open a second tab with :tabe and paste some other text in there.
Goal: I would like a third tab with a output equivalent to writing both texts to ...
11
votes
4answers
6k views
DIFF utility works for 2 files. How to compare more than 2 files at a time?
So the utility Diff works just like I want for 2 files, but I have a project that requires comparisons with more than 2 files at a time, maybe up to 10 at a time. This requires having all those files ...
7
votes
2answers
3k views
Undoing diff put when copying lines between vimdiff windows
If, at a command prompt, I run
vimdiff file1 file2
I get a vim instance that has two files open side-by-side. Let's suppose that the text in the files looks like this (file1 is on the left, file2 ...
9
votes
2answers
4k views
VIM - Show the diff of last saved version and current unsaved version [duplicate]
Possible Duplicate:
Can I see changes before I save my file in Vim?
Duplicate: Can I see changes before save my file in Vim?
Is there a way to see the diff of the saved version and the ...
5
votes
4answers
3k views
Redirect command to input of another in Python
I would like to replicate this in python:
gvimdiff <(hg cat file.txt) file.txt
(hg cat file.txt outputs the most recently committed version of file.txt)
I know how to pipe the file to gvimdiff, ...