You can launch Merge from the terminal via smerge
.
In windows it’s also convenient being able to launch Merge from the address bar.
VSCode already has a similar command(where I got the idea from). All that’s required is the following file:
smerge.cmd
@echo off
setlocal
"%~dp0\smerge.exe" %*
endlocal
Usage is smerge.cmd .
in the address bar (Alt+D
to focus) - this will open Merge in the current directory.
You can replace the dot with any relative path.
This is something anyone can do for their local installation, but I thought it’d be neat if it came with the official release.