Autohotkey script to run Far Manager from ConEmu

It is necessary to set Working Directory, otherwise ConEmu will not start Far Manager.

The AutoHotkey script for Win+F:

#Requires AutoHotkey v2.0

#f::
{
    SetWorkingDir("C:\Program Files\ConEmu")
    Run ("C:\Program Files\ConEmu\ConEmu64.exe")
}