1

I'm using conemu, pycmd and autohotkey.

::/artask::
    Send, d:{ENTER}
    Send, cd \{ENTER}
    Send, cd projects{ENTER}
    Send, cd ar-drone{ENTER}
    Send, cd tasklist{ENTER}
Return

Typing /artask followed by return does sometime work but most time not.

I often get some output like

cd a-drone
cd taskist
...

It seems that single chars get lost. Testing it with "MS DOS" shell it seems to work fine.

I prefer conemu and pycmd, so any idea how to work around?

vbd
  • 3,437
  • 4
  • 32
  • 45

1 Answers1

1

If you are in ConEmu, more correct way to do what you want - GuiMacro Just execute following command instead of sending keys one one

ConEmuC -GuiMacro:0 print "d:\ncd \\projects\\ar-drone\\tasklist\n"
Maximus
  • 10,751
  • 8
  • 47
  • 65