vimdiff is a vim mode that can show differences between two or three files.
2
votes
1answer
34 views
Forcing vimdiff to wrap lines?
When diffing 2 files in VIM, I prefer the lines to be wrapped. However, vimdiff sets wrap to off by default.
Is there a way to set line wrap automatically for every diff?
0
votes
3answers
131 views
How to become more productive in git [closed]
I am starting git and I am looking into being more productive. My experience was in Clearcase (mainly Windows version).
I am looking for good patterns to increase productivity.
To give an example I ...
3
votes
1answer
67 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 ...
1
vote
1answer
55 views
vimdiff and move among left and right pane
I am using vimdiff for the first time. Online I found written that to move from the left pane you use CTRL + w + Left or right arrow
This does not work for me. But I see that if I press just CTRL + w ...
0
votes
1answer
85 views
How can I install vimdiff on Windows after installing git bash?
I usually use vimdiff when I want to see diff between two points in git. However, I can't find vimdiff in 'git bash' environment on Windows. Therefore, If anybody know how to install or use vimdiff in ...
0
votes
1answer
78 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 ...
0
votes
0answers
15 views
obtaining multiple changes at once using vimdiff
I'm using vimdiff to merge a changes from another group's file into our file.
Not all changes should be accepted, so I have to do it manually.
However, I was wondering if there is a way to tell ...
1
vote
1answer
62 views
vimdiff: hop between 'blue' lines(lines with no corresponding text in file to compare)
I have to compare two (assembly) files and see where the instructions do not match.
In the vimdiff I use there are two colors to mark the difference in text.
1. blue: when there is no text in the ...
2
votes
1answer
133 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 ...
-4
votes
1answer
222 views
How can i view git diff for any commit using vim-fugitive?
vim-fugitive side-by-side git diff is great for viewing diff of unstaged files.
How can i use vim-fugitive to git diff
staged files?
any git revision?
1
vote
3answers
118 views
vimdiff between current and previous git version of a file
Is there a way of using vimdiff to compare the current version of a file and the same file n git versions ago?
For example, I'm working on the file foo.c on the branch master. I'd like to do a ...
0
votes
1answer
74 views
gvimdiff: How to keep width for both windows at 50% when maximizing?
When I start gvimdiff, the two windows occupy 50% of the window width. Exactly what I want.
However, when I then maximize the gvimdiff window via the window manager, the width of the left window ...
3
votes
1answer
185 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 ...
0
votes
0answers
78 views
vimdiff merge and change code while merging
I have a bug in revision 6 and currently the latest is at revision 25.
In revision 6 I originally had
#- include: hosts=live-condor_m
In revision 25 I already have
- include: ...
3
votes
1answer
286 views
Navigate to next conflict with vimdiff
In vimdiff you can use [c and ]c to go to the previous or next change, but when doing three-way merging many of those changes are not conflicts. Is there a command to go to the next conflict, not the ...
4
votes
1answer
130 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
506 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 ...
1
vote
1answer
272 views
MacVim - How to properly set up vimdiff to work with SourceTree?
I'm using MacVim as my editor and Atlassian SourceTree (v1.5.3) as my VCS frontend. I have MacVim's command line helper script mvim installed and mvimdiff properly symlinked.
I want to use mvimdiff ...
0
votes
1answer
107 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 ...
2
votes
2answers
160 views
Vim swp files interfere with repository vimdiff
My setup is to use vim (specifically MacVim in graphical mode) to edit source files and then I do (mercurial) repository diffs using vimdiff (in graphical mode again). Sometimes, when I do a diff, ...
0
votes
0answers
187 views
Git is not working with vimdiff
I am using meld with git for merging and I want to try vimdiff. Configured three way merge with git and then my own diff command:
[merge]
tool = vimdiff3
conflictstyle = diff3
[mergetool ...
2
votes
1answer
168 views
ignore new lines in vimdiff output
I know that I can ignore white space in vimdiff by se diffopt+=iwhte
but I also want to ignore newline character in vimdiff. How can I do it?
e.g.
if (a>b){
bar()`
would not be ...
2
votes
1answer
1k views
copy-paste lines between tabs in vimdiff
I'm using vimdiff to see the difference between two files. I'm wondering if it is possible to copy a line from the left tab (the first file) and paste it in the second tab (the second file). Actually, ...
5
votes
2answers
2k views
how to use vimdiff in VIM command mode?
I want to use :vimdiff file1 file2 to diff these files in VIM command mode , but I got a error message E492: Not an editor command: vimdiff . do I forget something ? how to resolve it?
According Vim ...
3
votes
2answers
412 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 ...
9
votes
4answers
1k 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 ...
3
votes
2answers
182 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 ...
10
votes
2answers
204 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 ...
3
votes
3answers
212 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 ...
10
votes
3answers
2k 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 ...
12
votes
3answers
3k 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 ...
5
votes
2answers
400 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 ...
3
votes
1answer
173 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] >> ...
2
votes
2answers
956 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 ...
4
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 ...
5
votes
2answers
289 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 ...
6
votes
1answer
2k 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 ...
2
votes
2answers
780 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
178 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 ...
87
votes
3answers
28k 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 ...
0
votes
1answer
197 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 ...
5
votes
1answer
1k 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 ...
2
votes
1answer
2k 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 ...
-2
votes
2answers
1k views
Why is VimDiff so limited? [closed]
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 ...
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
370 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 ?
59
votes
2answers
14k 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 ...
5
votes
1answer
113 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 ...
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
956 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 ...
