I am using below code to listen on `meta m` key event but it doesn't work if there is a bootstrap modal on the page. ``` listener.simple_combo('meta m', (e) => { console.log('hello '); e.stopDefault(); }); ```