diff --git a/src/console/Handlers.cpp b/src/console/Handlers.cpp index 1a63a05..6bf03d5 100644 --- a/src/console/Handlers.cpp +++ b/src/console/Handlers.cpp @@ -132,6 +132,8 @@ int32_t OnKeyDownRepeat(const EVENT_DATA_KEY* data, void* param) { return 0; } + auto anyControl = (1 << KEY_LCONTROL) | (1 << KEY_RCONTROL); + auto line = GetInputLine(); switch (data->key) { @@ -161,7 +163,6 @@ int32_t OnKeyDownRepeat(const EVENT_DATA_KEY* data, void* param) { ResetHighlight(); } - return 1; }