Tagged Questions
vimdiff is the same as vim -d or using :diffthis on several windows in the same vim tab. Use dp to propagate a difference and do to get it, ]c and [c to navigate between differences.
20
votes
3answers
613 views
How to open a new window below a split created by vimdiff?
If, at a command prompt, I run
vimdiff file1 file2
I get a vim instance that has two files open side-by-side, something like this:
╔═══════╤═══════╗
║ │ ║
║ │ ║
║ file1 │ ...
16
votes
2answers
3k 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 ...
15
votes
2answers
3k 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 ...
12
votes
2answers
3k 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 ...
12
votes
4answers
4k views
use vimdiff with a diff file
How can I use vimdiff to view the differences described in a diff file?
11
votes
2answers
2k views
Load different colorscheme when using vimdiff
How do i load a different colorscheme when i do a vimdiff.
I want this because the my current colorscheme does not show some diffs properly in vimdiff like the same fg/bg color for the text. This ...
10
votes
4answers
284 views
(Vim)diff two subroutines in same file
Is it possible to diff or even vimdiff two almost similar fortran 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 ...
9
votes
2answers
94 views
Mark difference as ok in vimdiff
I have a couple of large json files that I need to check for errors and was wondering if it is possible to mark a difference as ok and have that apply for the whole diff session thereby eliminating it ...
9
votes
2answers
2k 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 ...
8
votes
3answers
2k views
VIM - Show the diff of last saved version and current unsaved version
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 edited version of the same file in VIM?
This is the scenario: I've opened a ...
7
votes
3answers
190 views
Save vimdiff output?
I google'd this multiple times in the past but I've never found an answer. Is there a way to save vimdiff's output (preferably while maintaining colors, highlights, etc.)? I'd like to send this one ...
7
votes
3answers
2k views
7
votes
4answers
2k 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 ...
5
votes
5answers
922 views
How do you exit vimdiff mode in vim?
I am using vim with the fugitive extension. It has a :Gdiff command which brings you into vimdiff mode, but what is the right/quick way to close/quit vimdiff mode?
I.e., let's say I am editing the ...
5
votes
1answer
754 views
How Do You Get the bufspec While Using Vimdiff Through Git
I've read Vimdiff and Viewing differences with Vimdiff plus doing various google searches using things like "vimdiff multiple", "vimdiff git", "vimdiff commands" etc.
When using do or diffg I get ...
5
votes
3answers
1k 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 ...
5
votes
1answer
649 views
Using gvim to print diffs?
Is there a way to print out the diffs like they show when you open them with "gvim -d", with all the common code folded away and only the diffs showing in context? I tried the print menu option, but ...
5
votes
4answers
2k 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, ...
4
votes
1answer
507 views
Getting gVim's vimdiff to ignore case
I am trying to compare two assembly files where one was written all caps and the other in lowercase. Many lines are identical up to case and whitespace.
I tried the following, while two buffers in ...
4
votes
1answer
71 views
Open a non-diff window in vimdiff
Sometimes I'm using vimdiff and want to grab code and drop it in a 3rd window/buffer for later reference. When that window is open, though, just about everything is identified as a diff (because it's ...
4
votes
4answers
987 views
vimdiff and CVS integration
I've always wanted to be able to get a reasonably elegant way of getting vimdiff to work with a CVS controlled file. I've found numerous (somewhat hacky) scripts around the internet (best example ...
3
votes
2answers
80 views
taking diff between two named files in vim
In my project regression settings, output file have statement like
"diff between foo.txt and bar.txt found"
Now I need to take vimdiff between foo.txt and bar.txt. Can I do it from output ...
3
votes
2answers
66 views
closing pending vim windows to open
I know that I can close all opened buffers in vim by :qall.
I want to close event to pending opening buffers.
I have problem while reviewing my changes in P4 sandbox. When I have changes in ...
3
votes
3answers
455 views
My git mergetool open 4(not 3) windows in vimdiff
When I met a conflict, I tried to use git-mergetool to solve it. I type:
>git mergetool -t vimdiff
Then it opened vimdiff in 4-way, not 3-way. My split windows in vimdiff look like:
:ls
1 #a ...
3
votes
1answer
95 views
Did the behavior of `hg backout` change since the hg book was written?
I created a new repository, test-backout, and added a new file in it, file. I then made 4 commits, each time, appending the number of the commit to file using
echo [manually entered number] >> ...
3
votes
1answer
136 views
Diff-ing windows in vim
I am working on a script that has become fairly convoluted. I suspect there are several sections that have nearly identical code. Can I (and how can I) open the file in vim, with two (or more) windows ...
3
votes
2answers
423 views
How do you cancel an external git diff?
I've got vim setup as my external diff tool:
[diff]
external = git_diff_wrapper
#!/bin/sh
vimdiff "$2" "$5"
Say I have 300 files that have been modified; via bash, I type "git diff". It ...
3
votes
3answers
3k 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 ...
3
votes
2answers
351 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 .vimrc file with NERD_tree and a few other goodies. This ...
2
votes
3answers
187 views
git, vimdiff and dirdiff
I'm trying to use vimdiff+dirdiff.vim to diff inside Vim multiple files versionned with Git.
For Mercurial, it is possible with mercurial extdiff extension.
The only way I found on the web to ...
2
votes
0answers
227 views
vimdiff and merging, while keeping the original
I know this question may seem either intimidating, or not simplified (a POC) - however:
only the sample code is long, the actual question is simple
I couldn't cut any further and make it ...
2
votes
2answers
221 views
Use vimdiff to replace entire file?
I'm using vimdiff for a git merge. Is there a quick way to select 1 file to use, right now i'm just selecting everything from one buffer, replacing the $MERGE with that, and then saving. I guess I can ...
2
votes
1answer
253 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 ...
2
votes
2answers
189 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 ?
2
votes
1answer
809 views
Vimdiff - How to extract similar lines in files and output them to a file
I am new to vimdiff and had a question about outputting the similarities of the two or more files into a new file. For example, based on the following picture I would like to have b,c,e,f,a along with ...
1
vote
1answer
79 views
Applying an option to all opened files in Vim
I do a vimdiff on 2 files. Now if I want to wrap 2 files then I need to apply :set wrap 2 times to each file separately.
Is there any way I can apply set wrap to both of them simultaneously without ...
1
vote
1answer
315 views
How do I toggle between a Vertical and a Horizontal split in vimdiff?
I already know how to use the diffopt variable to start diff mode with horizontal/vertical splits but not how to toggle between the two when I already have 2 files open for comparison.
I tried the ...
1
vote
2answers
225 views
Why doesn't “Diff with Vim” command work?
I am running gVim on WinXP.
I open a folder, select two files, and click "Diff with Vim". Screenshot:
The gVim GUI starts up, with each of the files in its own tab. I notice that each tab is in ...
1
vote
3answers
98 views
Is there any way to queue many pairs of files for comparison with vimdiff?
I have a few dozen files I need to compare and merge with vimdiff. Is there any way to queue pairs of files for comparison so that I may open them all at once, rather than returning to the shell ...
1
vote
1answer
538 views
Configure vim-diff to show different colors when using it for svn-diff
I have set up 'vim-diff' as my default svn-diff tool by adding below line ~/.subversion/config
diff-cmd = /home/ravikirn/svndiff/diffwrap.sh
diffcmd.sh
!/bin/sh
# Configure your favorite diff ...
1
vote
2answers
274 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 ...
1
vote
2answers
725 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
...
1
vote
3answers
309 views
To vimdiff changed files at Dropbox by Vim
I often get a notification to my Vim that my file has been changed elsewhere, since I use Dropbox.
I then need to press
L
because it is my only way to get to see the file changed by my friend. ...
1
vote
2answers
407 views
How can I split horizontally across several vertically split windows in Vim?
Basically, I want to go from 1) to 2)
I usually do this by splitting horizontally first and then vertically, but as I want this to do three-way diffs, it is much handier to start vim by running:
$ ...
1
vote
1answer
1k views
VIM : using diffget in vimdiff
I'm looking for the good way to use vimdiff. Currently I figured out how to get a block of diff from a buffer to another (using 'do') but what I'm willing to do now is to simply get one (or some) line ...
0
votes
1answer
32 views
ignore lines with particular words in vimdiff output
I have 2 large files to take vimdiff. In vimdiff output I want to ignore lines showing diff but have a particular word.
e.g. in my case I want to ignore diff of all lines with prefix WARNING: in my ...
0
votes
1answer
99 views
Activating alternate Diff mode via a function call in Vim/gVim
In a recent question, I asked how to make vimdiff ignore the extra spaces when comparing. Following the answer and some further reading, I tried to do the following:
.1. Locate _vimrc and find the ...
0
votes
1answer
404 views
Why is VimDiff so limited?
With all the advanced editing capabilities of Vim, I find it hard to believe that VimDiff doesn't have a way of copying from/to right/left!! What else can a difftool be used for? Any idea? What are ...
0
votes
1answer
83 views
Encoding Problem in Vimdiff?
How can you solve the following encoding problem?
http://dl.getdropbox.com/u/175564/encoding.png
It is rather hard to compare the manuals.