ConEmu: Keyboard shortcut to run "cls[ENTER]"

In ConEmu, is it possible to create a Macro to type/paste "cls" then press [ENTER] and (ideally) assign it the keyboard shortcut [CTRL]+L ?

I am trying to emulate the clear screen function of the Linux Shell but for the Windows Command Prompt/PowerShell.


Solution 1:

Use GuiMacro (Keys & Macro page)

print("\ecls\n")

"\e" emulates Esc express, "\n" emulates Enter.

Of course, you may assign this macro to any desirable hotkey.

Solution 2:

Consider using Clink, it provides full Readline experience (including Ctrl+L and history search). Works great with ConEmu too.