# HG changeset patch # User Steve Losh # Date 1307983976 14400 # Node ID 158ad3aea81048d7c3bfefa7a00774f1aa84e1d2 # Parent 11bf5263576c0ba77ac040f0f989ebdee103d370 Installation. diff -r 11bf5263576c -r 158ad3aea810 README.markdown --- a/README.markdown Mon Jun 13 09:39:02 2011 -0400 +++ b/README.markdown Mon Jun 13 12:52:56 2011 -0400 @@ -1,8 +1,8 @@ This plugin is still under active development. ============================================== -It is not even remotely ready yet. -================================== +It is not even remotely ready yet. Lots of things are unimplemented. +===================================================================== It will probably eat your data. =============================== @@ -22,6 +22,29 @@ * Changelog * License +Installation +============ + +Use Pathogen to install the plugin, then add it as a merge tool for your VCS of +choice: + +**Mercurial:** add the following lines to `~/.hgrc`: + + [merge-tools] + threesome.executable = mvim + threesome.args = -f -O4 $base $local $other $output -c 'ThreesomeInit' + threesome.premerge = keep + threesome.priority = 1 + +**Git:** add the following lines to `~/.gitconfig`: + + [merge] + tool = threesome + + [mergetool "threesome"] + cmd = "mvim -f $BASE $LOCAL $REMOTE $MERGED -c 'ThreesomeInit'" + trustExitCode = true + Basic Usage ===========