Curious as to why Ctrl and Alt are not part of ImGuiKey_ enum

I wanted to get the behaviour of IsKeyReleased for Ctrl key and that’s when I realised that it is not part of ImGuiKey_ enum. Was curious about why that is the case and is there a simple way for me to implement it in my client code without using a static bool.

Thanks

This should be added, basically at some point will be adding all standard keys to the ImGuiKey_ enum to allow that, but there are some problems to solve in how we handle scancode vs keycode.