firepad
firepad copied to clipboard
Synchronized selection draws over local selection.
The problem is CodeMirror draws your selection on a layer behind the text, but other users' selections are drawn as a background color on the text itself, so they completely hide your own selection.
related:
https://codemirror.net/demo/markselection.html sounds like a good way to solve this.
Interesting pointer, thanks!