Kofifus
Kofifus
I just typed grunt and pressed enter it would be good when you have time to help with this so that windows developers can contribute as well without build difficulties....
yeah 'grunt build' completes fine.
I would like to make some more observation about performance as I am also struggling with poor loading times when using slower machines. I did some profiling and here are...
one thing I'm seeing is that as the document builds, both RichTextCodeMirror.prototype.onCodeMirrorBeforeChange_ and RichTextCodeMirror.prototype.onAnnotationsChanged_ run for every revision since the last checkpoint. I wonder if this can be optimized so...
+1 I would love to see this feature. Any plans to implement it ?
the issue is that you load the dictionaries asynchronously in definemode which results in the first iteration triggered by CM happening before they finished loading. I reworked your code to...
I ended up with a better solution, there is no need to create an overlay mode, instead I use addOverlay and issue it only after the dictionaries loaded. This greatly...