| 1956 | } |
| 1957 | |
| 1958 | static int hotkey_listActiveKeybinds(lua_State *L) { |
| 1959 | auto hotkey_mgr = Core::getInstance().getHotkeyManager(); |
| 1960 | auto binds = hotkey_mgr->listActiveKeybinds(); |
| 1961 | |
| 1962 | hotkey_pushBindArray(L, binds); |
| 1963 | return 1; |
| 1964 | } |
| 1965 | |
| 1966 | static int hotkey_listAllKeybinds(lua_State *L) { |
| 1967 | auto hotkey_mgr = Core::getInstance().getHotkeyManager(); |
nothing calls this directly
no test coverage detected