What is the shortcut key to clear console in Eclipse or how can it be configured? Any work-arounds to achieve this?
This thread is 7 years old now, but I constantly need to clean the console so i can get work done. Thanks to sbanders I made this AutoHotKey script:
#`::
WinGetTitle, Title, ahk_class SWT_Window0
if InStr(Title, "Eclipse") {
WinActivate, ahk_class SWT_Window0
Send +!q
Sleep, 1200
Send c
Send +{F10}r
}
return
What this means is the following.
It's a very handy script for coders who don't like clicking so I thought I'd share it.