This is the only theme that sets font size, remove this to bring in line with other themes.
Disallow line wrapping in gutter container
This prevents gutters from suddenly moving below each other as the editor is scroller horizontally.
It's hardly useful, error-prone, and too clunky.
Preserve constructor property on the editor instance.
In some cases it's more convenient to access `CodeMirror` from the instance itself, but the way prototype was defined made it impossible.
[markdown mode] Directly use xml mode, rather than relying on text/ht…
…ml binding Since the mode uses the internals of the xml mode state object, it will break if another mode defines text/html (i.e. htmlmixed). Closes #1468
[css mode] Properly make keywords case-insensitive
Also prevent Object.prototype properties like toString from being interpreted as keywords. Closes #1495
[lint addon] Don't use -span- in css classes
Apparently Bootstrap messes with those. Closes #1497
vim mode: Fix off-by-one errors in word selection.
The below conforms to Vim's behavior regarding whitespace trimming.
CodeMirror should set spellcheck=false on the input textarea
WebKit does not honor autocorrect=off, but it does honor spellcheck=false.