Page 1 of 1

No command in context menu

Posted: 22.02.2015, 22:31
by cachaito
Hi!

I've added to Windows 7 registry

Code: Select all

HKEY_CLASSES_ROOT\Directory\Background\shell\
ability to open console2 (http://sourceforge.net/projects/console/) in the context menu under right mouse button. In plain Explorer it works, in FreeCommander XE 2015 Build 686 64-bit there's no trace of Console2 :cry:

Maybe there is a workaround with Console2 and DOS Promt option (DosCommandBoxSpec) to open Console2 in current directory after ctrl + d? Those advices viewtopic.php?t=2266 didn't work...

Re: No command in context menu

Posted: 26.03.2015, 10:31
by cachaito
cachaito wrote: Maybe there is a workaround with Console2 and DOS Promt option (DosCommandBoxSpec) to open Console2 in current directory after ctrl + d? Those advices viewtopic.php?t=2266 didn't work...
If You use Sublime Text there is a little great plugin called: Terminal. If You put this in it settings:

Code: Select all

{
    "terminal": "C:/Program Files/Console2/Console.exe",
    "parameters": ["-d", "%CWD%"]
}
it works perfectly. I wonder why statement in DosCommandBoxSpec:

Code: Select all

C:\Program Files\Console2\Console.exe -d "%CWD%"
doesn't work :roll:

Re: No command in context menu

Posted: 26.03.2015, 12:27
by Karol
Changes release 687 viewtopic.php?p=20596#p20596:
- Implemented: DOS-Prompt specification - now %ActivDir% variable is enabled

Re: No command in context menu

Posted: 26.03.2015, 22:04
by cachaito
- Implemented: DOS-Prompt specification - now %ActivDir% variable is enabled
Confirm- it works now :D

Thank You!