I love the simple interface and the rich set of features of Akelpad. I am using this editor to write and compile simple programs in Java.
I have used the Hotkeys plugin to compile Java programs with this command
Code: Select all
Call("Log::Output", 1, `"javac" "%f"`, "%d")
Then I used the Hotkeys plugin to run the compiled Java program as follows
Code: Select all
Call("Log::Output", 1, `"java" "%f"`, "%d")
But some Java programs need user input, so I want to call these Java programs using cmd. I think the log::Output plugin cannot take user input.
How can I call programs from cmd from within Akelpad?
Any tips would be greatly appreciated!