Hey, I love CodeMirror! We are building an IDE for our custom language using it. This is how we are using CodeMirror for the “command palette” feature, with autocomplete:
Thanks, it will work for me for the current purpose.
Also: do you have any advice on debugging/working with CSS? The autocomplete menu is pretty shy, and goes away as soon as I interact with the browser. I have tried the closeOnBlur, but its still tricky.
You can freeze the DOM by entering the JS debugger (for example by running setTimeout(() => {debugger}, 2000) in the browser console, and then creating the situation you want to inspect).