I wish to remap only Left Windows key when pressed alone and keep every Left Windows key combination such as LWin+Left/Right etc
So far no solution I've tried worked very good: Sometimes the script does not intercept windows key and mostly doing something in between the default windows behavior and the autohotkey script behavior.
This is the script with the best results so far:
$LWin::
KeyWait, LWin, T0.3
If !ErrorLevel {
Send, +!{space}
}
Else {
Send, {LWin Down}
}
KeyWait, LWin
Send, {LWin Up}
Return
Things I've tried: