

If this is not possible could you please let me know so i can post a feature request

But this won't open the cmd window in the current folder SS is in, right ?#IfWinActive,ahk_class SalamanderMainWindowVer16
NumpadDiv:: run notepad
RETURN
If Altap implement the remapping the way i would expect thiseblis wrote:Thanks for the reply.
If i understand correctly keymapping adjustment would allow me to change
the hotkey that starts "cmd.exe" and not the actual program itself (maybe i misunderstood).
I look here if the Sala window is active... then i say..AbteriX wrote: #IfWinActive,ahk_class SalamanderMainWindowVer16
NumpadDiv:: run notepad
RETURN
No this remapping didn't open the cmd window...But this won't open the cmd window in the current folder SS is in, right ?
Thanks, that works. The more programs that open Console the betterth. wrote:Salamander is reading the environment variable "ComSpec" to get the name of the command shell program which it starts when Num/ is pressed.
So the solution is:
In the settings of Console set the Shell entry to cmd.exe.
In System properties set ComSpec to the complete path of console.exe.
Of course that means that every program that reads the ComSpec variable will now start Console instead of cmd.
BTW I like Console too.
Yes, you're right. My mistakeAbteriX wrote: If Altap implement the remapping the way i would expect this
you should be able to adjust the keymaps as you like:
e.g.
Crtl+D = opens the DOS-Box
NumpadDIV = opens YOUR tool
Code: Select all
Set ShellApp = CreateObject("Shell.Application")
ShellApp.ShellExecute "E:\Program Files (x86)\Altap Salamander 2.54\Console2\Console.exe", "-d """ & Salamander.SourcePanel.Path & """", ""
Code: Select all
#IfWinActive,ahk_class SalamanderMainWindowVer25
NumpadDiv::SendEvent !-
RETURN