comparison hgext/extdiff.py @ 2675:d99a92b7acad

extdiff : add comment on how to use vim for doing directoy diff
author "Mathieu Clabaut <mathieu.clabaut@gmail.com>"
date Tue, 25 Jul 2006 23:10:11 +0200
parents 391c5d0f9ef3
children 3d6efcbbd1c9
comparison
equal deleted inserted replaced
2674:7a6708e73e21 2675:d99a92b7acad
20 # [extdiff] 20 # [extdiff]
21 # # add new command called vdiff, runs kdiff3 21 # # add new command called vdiff, runs kdiff3
22 # cmd.vdiff = kdiff3 22 # cmd.vdiff = kdiff3
23 # # add new command called meld, runs meld (no need to name twice) 23 # # add new command called meld, runs meld (no need to name twice)
24 # cmd.meld = 24 # cmd.meld =
25 # # add new command called vimdiff, runs gvimdiff with DirDiff plugin
26 # #(see http://www.vim.org/scripts/script.php?script_id=102)
27 # cmd.vimdiff = LC_ALL=C gvim -f '+bdel 1 2' '+ execute "DirDiff ".argv(0)." ".argv(1)'
25 # 28 #
26 # you can use -I/-X and list of file or directory names like normal 29 # you can use -I/-X and list of file or directory names like normal
27 # "hg diff" command. extdiff makes snapshots of only needed files, so 30 # "hg diff" command. extdiff makes snapshots of only needed files, so
28 # compare program will be fast. 31 # compare program will be fast.
29 32