mercurial/defaultrc/mergetools.rc
author Matt Harbison <matt_harbison@yahoo.com>
Thu, 17 Dec 2020 00:48:36 -0500
changeset 46124 ceaf1646f420
parent 43670 02fe8dedab8c
child 46168 24ee0c7e7fd2
permissions -rw-r--r--
mergetools: alphabetize the config settings This will make it easier to identify differences with the TortoiseHg config file. It was simply piped through `sort`, and then the spacing and comments restored into the proper place. The `UltraCompare` config was positioned such that the sort is case insensitive- it's the only camelcase config in here. Differential Revision: https://phab.mercurial-scm.org/D9620
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6008
33bfedc0be4a filemerge: add an example set of global settings for common merge tools
Matt Mackall <mpm@selenic.com>
parents:
diff changeset
     1
# Some default global settings for common merge tools
33bfedc0be4a filemerge: add an example set of global settings for common merge tools
Matt Mackall <mpm@selenic.com>
parents:
diff changeset
     2
33bfedc0be4a filemerge: add an example set of global settings for common merge tools
Matt Mackall <mpm@selenic.com>
parents:
diff changeset
     3
[merge-tools]
46124
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
     4
araxis.args=/3 /a2 /wait /merge /title1:"Other" /title2:"Base" /title3:"Local :"$local $other $base $local $output
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
     5
araxis.binary=True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
     6
araxis.checkconflict=True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
     7
araxis.diffargs=/2 /wait /title1:$plabel1 /title2:$clabel $parent $child
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
     8
araxis.gui=True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
     9
araxis.priority=-2
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    10
araxis.regappend=\ConsoleCompare.exe
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    11
araxis.regkey=SOFTWARE\Classes\TypeLib\{46799e0a-7bd1-4330-911c-9660bb964ea2}\7.0\HELPDIR
6008
33bfedc0be4a filemerge: add an example set of global settings for common merge tools
Matt Mackall <mpm@selenic.com>
parents:
diff changeset
    12
46124
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    13
; Linux version of Beyond Compare
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    14
bcompare.args=$local $other $base -mergeoutput=$output -ro -lefttitle=$labellocal -centertitle=$labelbase -righttitle=$labelother -outputtitle=merged -automerge -reviewconflicts -solo
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    15
bcompare.diffargs=-lro -lefttitle=$plabel1 -righttitle=$clabel -solo -expandall $parent $child
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    16
bcompare.gui=True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    17
bcompare.priority=-1
11506
48e549d7c6ae mergetools.hgrc: add vimdiff
Martin Geisler <mg@lazybytes.net>
parents: 11308
diff changeset
    18
46124
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    19
; OS X version of Beyond Compare
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    20
bcomposx.args=$local $other $base -mergeoutput=$output -ro -lefttitle=$labellocal -centertitle=$labelbase -righttitle=$labelother -outputtitle=merged -automerge -reviewconflicts -solo
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    21
bcomposx.diffargs=-lro -lefttitle=$plabel1 -righttitle=$clabel -solo -expandall $parent $child
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    22
bcomposx.executable = /Applications/Beyond Compare.app/Contents/MacOS/bcomp
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    23
bcomposx.gui=True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    24
bcomposx.priority=-1
6008
33bfedc0be4a filemerge: add an example set of global settings for common merge tools
Matt Mackall <mpm@selenic.com>
parents:
diff changeset
    25
46124
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    26
; Windows version of Beyond Compare
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    27
beyondcompare3.args=$local $other $base $output /ro /lefttitle=$labellocal /centertitle=$labelbase /righttitle=$labelother /automerge /reviewconflicts /solo
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    28
beyondcompare3.diffargs=/lro /lefttitle=$plabel1 /righttitle=$clabel /solo /expandall $parent $child
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    29
beyondcompare3.gui=True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    30
beyondcompare3.priority=-2
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    31
beyondcompare3.regkey=Software\Scooter Software\Beyond Compare 3
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    32
beyondcompare3.regname=ExePath
6008
33bfedc0be4a filemerge: add an example set of global settings for common merge tools
Matt Mackall <mpm@selenic.com>
parents:
diff changeset
    33
46124
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    34
diffmerge.args=-nosplash -merge -title1=$labellocal -title2=merged -title3=$labelother $local $base $other -result=$output
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    35
diffmerge.check=changed
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    36
diffmerge.diffargs=--nosplash --title1=$plabel1 --title2=$clabel $parent $child
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    37
diffmerge.gui=True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    38
diffmerge.priority=-7
10486
6b354a763617 mergetools: improve configuration for several merge tools
Steve Borho <steve@borho.org>
parents: 7867
diff changeset
    39
diffmerge.regkey=Software\SourceGear\SourceGear DiffMerge\
13566
a87a0fcb412f mergetools: add alternate registry keys for 32bit apps on 64bit O/S
Steve Borho <steve@borho.org>
parents: 11506
diff changeset
    40
diffmerge.regkeyalt=Software\Wow6432Node\SourceGear\SourceGear DiffMerge\
10486
6b354a763617 mergetools: improve configuration for several merge tools
Steve Borho <steve@borho.org>
parents: 7867
diff changeset
    41
diffmerge.regname=Location
6008
33bfedc0be4a filemerge: add an example set of global settings for common merge tools
Matt Mackall <mpm@selenic.com>
parents:
diff changeset
    42
46124
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    43
diffuse.args=$local $base $other
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    44
diffuse.diffargs=$parent $child
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    45
diffuse.gui=True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    46
diffuse.priority=-3
6008
33bfedc0be4a filemerge: add an example set of global settings for common merge tools
Matt Mackall <mpm@selenic.com>
parents:
diff changeset
    47
35908
a9802c9ecfb5 merge: use operation-provided labels (ex: dest/source) in several merge-tools
Kyle Lippincott <spectral@google.com>
parents: 26733
diff changeset
    48
ecmerge.args=$base $local $other --mode=merge3 --title0=$labelbase --title1=$labellocal --title2=$labelother --to=$output
46124
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    49
ecmerge.diffargs=$parent $child --mode=diff2 --title1=$plabel1 --title2=$clabel
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    50
ecmerge.gui=True
6008
33bfedc0be4a filemerge: add an example set of global settings for common merge tools
Matt Mackall <mpm@selenic.com>
parents:
diff changeset
    51
ecmerge.regkey=Software\Elli\xc3\xa9 Computing\Merge
13566
a87a0fcb412f mergetools: add alternate registry keys for 32bit apps on 64bit O/S
Steve Borho <steve@borho.org>
parents: 11506
diff changeset
    52
ecmerge.regkeyalt=Software\Wow6432Node\Elli\xc3\xa9 Computing\Merge
6008
33bfedc0be4a filemerge: add an example set of global settings for common merge tools
Matt Mackall <mpm@selenic.com>
parents:
diff changeset
    53
21632
3191d330302f mergetools.hgrc: add minimal configuration for editmerge
Pierre-Yves David <pierre-yves.david@fb.com>
parents: 21099
diff changeset
    54
# editmerge is a small script shipped in contrib.
3191d330302f mergetools.hgrc: add minimal configuration for editmerge
Pierre-Yves David <pierre-yves.david@fb.com>
parents: 21099
diff changeset
    55
# It needs this config otherwise it behaves the same as internal:local
3191d330302f mergetools.hgrc: add minimal configuration for editmerge
Pierre-Yves David <pierre-yves.david@fb.com>
parents: 21099
diff changeset
    56
editmerge.args=$output
3191d330302f mergetools.hgrc: add minimal configuration for editmerge
Pierre-Yves David <pierre-yves.david@fb.com>
parents: 21099
diff changeset
    57
editmerge.check=changed
3191d330302f mergetools.hgrc: add minimal configuration for editmerge
Pierre-Yves David <pierre-yves.david@fb.com>
parents: 21099
diff changeset
    58
editmerge.premerge=keep
3191d330302f mergetools.hgrc: add minimal configuration for editmerge
Pierre-Yves David <pierre-yves.david@fb.com>
parents: 21099
diff changeset
    59
46124
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    60
filemerge.args=-left $other -right $local -ancestor $base -merge $output
7385
8119c1a607c4 mergetools: add pointer to the usual filemerge path
Brendan Cully <brendan@kublai.com>
parents: 6559
diff changeset
    61
filemerge.executable=/Developer/Applications/Utilities/FileMerge.app/Contents/MacOS/FileMerge
6008
33bfedc0be4a filemerge: add an example set of global settings for common merge tools
Matt Mackall <mpm@selenic.com>
parents:
diff changeset
    62
filemerge.gui=True
7665
950484f05f16 Update win32 merge tools configuration
Pascal Quantin <pascal.quantin@gmail.com>
parents: 7385
diff changeset
    63
46124
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    64
filemergexcode.args=-left $other -right $local -ancestor $base -merge $output
26733
f6e2e42fb8ef mergetools.rc: find OSX FileMerge in the new location inside Xcode 4.3
Mads Kiilerich <madski@unity3d.com>
parents: 24179
diff changeset
    65
filemergexcode.executable=/Applications/Xcode.app/Contents/Applications/FileMerge.app/Contents/MacOS/FileMerge
f6e2e42fb8ef mergetools.rc: find OSX FileMerge in the new location inside Xcode 4.3
Mads Kiilerich <madski@unity3d.com>
parents: 24179
diff changeset
    66
filemergexcode.gui=True
f6e2e42fb8ef mergetools.rc: find OSX FileMerge in the new location inside Xcode 4.3
Mads Kiilerich <madski@unity3d.com>
parents: 24179
diff changeset
    67
46124
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    68
gpyfm.gui=True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    69
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    70
gvimdiff.args=--nofork -d -g -O $local $other $base
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    71
gvimdiff.diffargs=--nofork -d -g -O $parent $child
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    72
gvimdiff.priority=-9
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    73
gvimdiff.regkey=Software\Vim\GVim
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    74
gvimdiff.regkeyalt=Software\Wow6432Node\Vim\GVim
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    75
gvimdiff.regname=path
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    76
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    77
kdiff3.args=--auto --L1 $labelbase --L2 $labellocal --L3 $labelother $base $local $other -o $output
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    78
kdiff3.diffargs=--L1 $plabel1 --L2 $clabel $parent $child
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    79
kdiff3.fixeol=True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    80
kdiff3.gui=True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    81
kdiff3.regappend=\kdiff3.exe
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    82
kdiff3.regkey=Software\KDiff3
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    83
kdiff3.regkeyalt=Software\Wow6432Node\KDiff3
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    84
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    85
meld.args=--label=$labellocal $local --label='merged' $base --label=$labelother $other -o $output --auto-merge
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    86
meld.check=changed
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    87
meld.diffargs=-a --label=$plabel1 $parent --label=$clabel $child
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    88
meld.gui=True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    89
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    90
merge.check=conflicts
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    91
merge.priority=-100
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    92
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    93
p4merge.args=$base $local $other $output
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    94
p4merge.diffargs=$parent $child
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    95
p4merge.gui=True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    96
p4merge.priority=-8
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    97
p4merge.regappend=\p4merge.exe
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    98
p4merge.regkey=Software\Perforce\Environment
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
    99
p4merge.regkeyalt=Software\Wow6432Node\Perforce\Environment
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   100
p4merge.regname=P4INSTROOT
7665
950484f05f16 Update win32 merge tools configuration
Pascal Quantin <pascal.quantin@gmail.com>
parents: 7385
diff changeset
   101
46124
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   102
p4mergeosx.args = $base $local $other $output
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   103
p4mergeosx.diffargs=$parent $child
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   104
p4mergeosx.executable = /Applications/p4merge.app/Contents/MacOS/p4merge
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   105
p4mergeosx.gui = True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   106
p4mergeosx.priority=-8
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   107
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   108
tkdiff.args=$local $other -a $base -o $output
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   109
tkdiff.diffargs=-L $plabel1 $parent -L $clabel $child
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   110
tkdiff.gui=True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   111
tkdiff.priority=-8
10486
6b354a763617 mergetools: improve configuration for several merge tools
Steve Borho <steve@borho.org>
parents: 7867
diff changeset
   112
46124
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   113
tortoisemerge.args=/base:$base /mine:$local /theirs:$other /merged:$output
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   114
tortoisemerge.check=changed
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   115
tortoisemerge.diffargs=/base:$parent /mine:$child /basename:$plabel1 /minename:$clabel
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   116
tortoisemerge.gui=True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   117
tortoisemerge.priority=-8
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   118
tortoisemerge.regkey=Software\TortoiseSVN
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   119
tortoisemerge.regkeyalt=Software\Wow6432Node\TortoiseSVN
24179
14d647d25c70 merge-tools: configuration for Beyond Compare on OS X
Mads Kiilerich <madski@unity3d.com>
parents: 23968
diff changeset
   120
46124
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   121
UltraCompare.args = $base $local $other -title1 base -title3 other
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   122
UltraCompare.binary = True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   123
UltraCompare.check = conflicts,changed
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   124
UltraCompare.diffargs=$child $parent -title1 $clabel -title2 $plabel1
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   125
UltraCompare.gui = True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   126
UltraCompare.priority = -2
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   127
UltraCompare.regkey=Software\Microsoft\Windows\CurrentVersion\App Paths\UC.exe
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   128
UltraCompare.regkeyalt=Software\Wow6432Node\Microsoft\Windows\CurrentVersion\App Paths\UC.exe
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   129
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   130
vimdiff.args=$local $other $base -c 'redraw | echomsg "hg merge conflict, type \":cq\" to abort vimdiff"'
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   131
vimdiff.check=changed
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   132
vimdiff.priority=-10
35908
a9802c9ecfb5 merge: use operation-provided labels (ex: dest/source) in several merge-tools
Kyle Lippincott <spectral@google.com>
parents: 26733
diff changeset
   133
winmerge.args=/e /x /wl /ub /dl $labelother /dr $labellocal $other $local $output
46124
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   134
winmerge.check=changed
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   135
winmerge.diffargs=/r /e /x /ub /wl /dl $plabel1 /dr $clabel $parent $child
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   136
winmerge.gui=True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   137
winmerge.priority=-10
7665
950484f05f16 Update win32 merge tools configuration
Pascal Quantin <pascal.quantin@gmail.com>
parents: 7385
diff changeset
   138
winmerge.regkey=Software\Thingamahoochie\WinMerge
13566
a87a0fcb412f mergetools: add alternate registry keys for 32bit apps on 64bit O/S
Steve Borho <steve@borho.org>
parents: 11506
diff changeset
   139
winmerge.regkeyalt=Software\Wow6432Node\Thingamahoochie\WinMerge\
7665
950484f05f16 Update win32 merge tools configuration
Pascal Quantin <pascal.quantin@gmail.com>
parents: 7385
diff changeset
   140
winmerge.regname=Executable
10486
6b354a763617 mergetools: improve configuration for several merge tools
Steve Borho <steve@borho.org>
parents: 7867
diff changeset
   141
46124
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   142
xxdiff.args=--show-merged-pane --exit-with-merge-status --title1 $labellocal --title2 $labelbase --title3 $labelother --merged-filename $output --merge $local $base $other
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   143
xxdiff.diffargs=--title1 $plabel1 $parent --title2 $clabel $child
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   144
xxdiff.gui=True
ceaf1646f420 mergetools: alphabetize the config settings
Matt Harbison <matt_harbison@yahoo.com>
parents: 43670
diff changeset
   145
xxdiff.priority=-8