[package.json] Use 'repository' rather than 'repositories' field
Apparently the second is no longer supported in npm 1.2 (?).
CodeMirror.multiplexingMode: added an innerStyle option and test.
Example usage: applying different color schemes to submodes.
Revert "[bower.json] Remove version field"
This reverts commit e766134.
Remove unneeded cursor set at end of drag
(The mousemove events should already have taken care of that.) Issue #1488
Also fire beforeChange for undo/redo changes
But disable its update method in that case. Issue #1539
The argument order to Delayed.set was wrong, and we actually want to ensure that the resize fires at least every 100ms during a resize, so that the display doesn't lag too much.
- escaped quotes in strings now displayed properly - whitespace no longer affects qualifiers - parentheses properly highlighted
[vim keymap] 'dd' now handles last line corretly.
Current behavior: ``` word1 word2 ``` If the cursor is on the last line and 'dd' is executed, the buffer does not change. Expected behavior: ``` word1 word2 ```
Update Webkit spanAffectsWrapping hack to recognize some common Unico…
…de punctuation Issue #1219
[comment addon] Fix bug in uncommenting line-commented blocks
[xml-hint addon] Rewrite from scratch
Using some of the ideas from the html5 hinter. Can now use a much richer source of hinting information, and also completes properties and property values.
[xml-hint demo] Disable implicit completion on single candidate
When implicitly activating completion, it is undesirable.
Reset scrollbarwidth cache when window is resized
Zooming can produce different measurements.
forgive one pixel in scrollbars
Sometimes I find that CodeMirror adds scrollbars inappropriately (most often due to browser zoom). Digging around suggested that it is some non-integers resulting in rounding up the measured size, and I haven't been able to find a case where the two values differ by more than one pixel, so simply setting the threshold one pixel higher seems to address the issue. This PR forgives one pixel in the size comparison before drawing the scrollbars.
Take top padding into account in "local" coordinate space, fix bug in…
… fromCoordSystem Issue #1557
Remove explicit compensation for paddingTop in scrolling code
Local coords now include paddingTop. Issue #1557
Another test that fails mysteriously on Travis' Phantom
(but not on my local one, or in a real browser)
Support a disableInput property on keymaps
Stop suppressing key events for nofallthrough keymaps. Issue #1558