dongyukun
9 天以前 2b47c5b0e504a653fe40ae8b6749e14e228a89bd
提交 | 用户 | 时间
e7c126 1 /*
H 2  * Copyright 1999-2018 Alibaba Group Holding Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 // This is CodeMirror (http://codemirror.net), a code editor
18 // implemented in JavaScript on top of the browser's DOM.
19 //
20 // You can find some technical background for some of the code below
21 // at http://marijnhaverbeke.nl/blog/#cm-internals .
22
23 (function (global, factory) {
24     typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
25     typeof define === 'function' && define.amd ? define(factory) :
26     (global.CodeMirror = factory());
27 }(this, (function () { 'use strict';
28
29 // Kludges for bugs and behavior differences that can't be feature
30 // detected are enabled based on userAgent etc sniffing.
31 var userAgent = navigator.userAgent;
32 var platform = navigator.platform;
33
34 var gecko = /gecko\/\d/i.test(userAgent);
35 var ie_upto10 = /MSIE \d/.test(userAgent);
36 var ie_11up = /Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(userAgent);
37 var edge = /Edge\/(\d+)/.exec(userAgent);
38 var ie = ie_upto10 || ie_11up || edge;
39 var ie_version = ie && (ie_upto10 ? document.documentMode || 6 : +(edge || ie_11up)[1]);
40 var webkit = !edge && /WebKit\//.test(userAgent);
41 var qtwebkit = webkit && /Qt\/\d+\.\d+/.test(userAgent);
42 var chrome = !edge && /Chrome\//.test(userAgent);
43 var presto = /Opera\//.test(userAgent);
44 var safari = /Apple Computer/.test(navigator.vendor);
45 var mac_geMountainLion = /Mac OS X 1\d\D([8-9]|\d\d)\D/.test(userAgent);
46 var phantom = /PhantomJS/.test(userAgent);
47
48 var ios = !edge && /AppleWebKit/.test(userAgent) && /Mobile\/\w+/.test(userAgent);
49 var android = /Android/.test(userAgent);
50 // This is woefully incomplete. Suggestions for alternative methods welcome.
51 var mobile = ios || android || /webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(userAgent);
52 var mac = ios || /Mac/.test(platform);
53 var chromeOS = /\bCrOS\b/.test(userAgent);
54 var windows = /win/i.test(platform);
55
56 var presto_version = presto && userAgent.match(/Version\/(\d*\.\d*)/);
57 if (presto_version) { presto_version = Number(presto_version[1]); }
58 if (presto_version && presto_version >= 15) { presto = false; webkit = true; }
59 // Some browsers use the wrong event properties to signal cmd/ctrl on OS X
60 var flipCtrlCmd = mac && (qtwebkit || presto && (presto_version == null || presto_version < 12.11));
61 var captureRightClick = gecko || (ie && ie_version >= 9);
62
63 function classTest(cls) { return new RegExp("(^|\\s)" + cls + "(?:$|\\s)\\s*") }
64
65 var rmClass = function(node, cls) {
66   var current = node.className;
67   var match = classTest(cls).exec(current);
68   if (match) {
69     var after = current.slice(match.index + match[0].length);
70     node.className = current.slice(0, match.index) + (after ? match[1] + after : "");
71   }
72 };
73
74 function removeChildren(e) {
75   for (var count = e.childNodes.length; count > 0; --count)
76     { e.removeChild(e.firstChild); }
77   return e
78 }
79
80 function removeChildrenAndAdd(parent, e) {
81   return removeChildren(parent).appendChild(e)
82 }
83
84 function elt(tag, content, className, style) {
85   var e = document.createElement(tag);
86   if (className) { e.className = className; }
87   if (style) { e.style.cssText = style; }
88   if (typeof content == "string") { e.appendChild(document.createTextNode(content)); }
89   else if (content) { for (var i = 0; i < content.length; ++i) { e.appendChild(content[i]); } }
90   return e
91 }
92 // wrapper for elt, which removes the elt from the accessibility tree
93 function eltP(tag, content, className, style) {
94   var e = elt(tag, content, className, style);
95   e.setAttribute("role", "presentation");
96   return e
97 }
98
99 var range;
100 if (document.createRange) { range = function(node, start, end, endNode) {
101   var r = document.createRange();
102   r.setEnd(endNode || node, end);
103   r.setStart(node, start);
104   return r
105 }; }
106 else { range = function(node, start, end) {
107   var r = document.body.createTextRange();
108   try { r.moveToElementText(node.parentNode); }
109   catch(e) { return r }
110   r.collapse(true);
111   r.moveEnd("character", end);
112   r.moveStart("character", start);
113   return r
114 }; }
115
116 function contains(parent, child) {
117   if (child.nodeType == 3) // Android browser always returns false when child is a textnode
118     { child = child.parentNode; }
119   if (parent.contains)
120     { return parent.contains(child) }
121   do {
122     if (child.nodeType == 11) { child = child.host; }
123     if (child == parent) { return true }
124   } while (child = child.parentNode)
125 }
126
127 function activeElt() {
128   // IE and Edge may throw an "Unspecified Error" when accessing document.activeElement.
129   // IE < 10 will throw when accessed while the page is loading or in an iframe.
130   // IE > 9 and Edge will throw when accessed in an iframe if document.body is unavailable.
131   var activeElement;
132   try {
133     activeElement = document.activeElement;
134   } catch(e) {
135     activeElement = document.body || null;
136   }
137   while (activeElement && activeElement.shadowRoot && activeElement.shadowRoot.activeElement)
138     { activeElement = activeElement.shadowRoot.activeElement; }
139   return activeElement
140 }
141
142 function addClass(node, cls) {
143   var current = node.className;
144   if (!classTest(cls).test(current)) { node.className += (current ? " " : "") + cls; }
145 }
146 function joinClasses(a, b) {
147   var as = a.split(" ");
148   for (var i = 0; i < as.length; i++)
149     { if (as[i] && !classTest(as[i]).test(b)) { b += " " + as[i]; } }
150   return b
151 }
152
153 var selectInput = function(node) { node.select(); };
154 if (ios) // Mobile Safari apparently has a bug where select() is broken.
155   { selectInput = function(node) { node.selectionStart = 0; node.selectionEnd = node.value.length; }; }
156 else if (ie) // Suppress mysterious IE10 errors
157   { selectInput = function(node) { try { node.select(); } catch(_e) {} }; }
158
159 function bind(f) {
160   var args = Array.prototype.slice.call(arguments, 1);
161   return function(){return f.apply(null, args)}
162 }
163
164 function copyObj(obj, target, overwrite) {
165   if (!target) { target = {}; }
166   for (var prop in obj)
167     { if (obj.hasOwnProperty(prop) && (overwrite !== false || !target.hasOwnProperty(prop)))
168       { target[prop] = obj[prop]; } }
169   return target
170 }
171
172 // Counts the column offset in a string, taking tabs into account.
173 // Used mostly to find indentation.
174 function countColumn(string, end, tabSize, startIndex, startValue) {
175   if (end == null) {
176     end = string.search(/[^\s\u00a0]/);
177     if (end == -1) { end = string.length; }
178   }
179   for (var i = startIndex || 0, n = startValue || 0;;) {
180     var nextTab = string.indexOf("\t", i);
181     if (nextTab < 0 || nextTab >= end)
182       { return n + (end - i) }
183     n += nextTab - i;
184     n += tabSize - (n % tabSize);
185     i = nextTab + 1;
186   }
187 }
188
189 var Delayed = function() {this.id = null;};
190 Delayed.prototype.set = function (ms, f) {
191   clearTimeout(this.id);
192   this.id = setTimeout(f, ms);
193 };
194
195 function indexOf(array, elt) {
196   for (var i = 0; i < array.length; ++i)
197     { if (array[i] == elt) { return i } }
198   return -1
199 }
200
201 // Number of pixels added to scroller and sizer to hide scrollbar
202 var scrollerGap = 30;
203
204 // Returned or thrown by various protocols to signal 'I'm not
205 // handling this'.
206 var Pass = {toString: function(){return "CodeMirror.Pass"}};
207
208 // Reused option objects for setSelection & friends
209 var sel_dontScroll = {scroll: false};
210 var sel_mouse = {origin: "*mouse"};
211 var sel_move = {origin: "+move"};
212
213 // The inverse of countColumn -- find the offset that corresponds to
214 // a particular column.
215 function findColumn(string, goal, tabSize) {
216   for (var pos = 0, col = 0;;) {
217     var nextTab = string.indexOf("\t", pos);
218     if (nextTab == -1) { nextTab = string.length; }
219     var skipped = nextTab - pos;
220     if (nextTab == string.length || col + skipped >= goal)
221       { return pos + Math.min(skipped, goal - col) }
222     col += nextTab - pos;
223     col += tabSize - (col % tabSize);
224     pos = nextTab + 1;
225     if (col >= goal) { return pos }
226   }
227 }
228
229 var spaceStrs = [""];
230 function spaceStr(n) {
231   while (spaceStrs.length <= n)
232     { spaceStrs.push(lst(spaceStrs) + " "); }
233   return spaceStrs[n]
234 }
235
236 function lst(arr) { return arr[arr.length-1] }
237
238 function map(array, f) {
239   var out = [];
240   for (var i = 0; i < array.length; i++) { out[i] = f(array[i], i); }
241   return out
242 }
243
244 function insertSorted(array, value, score) {
245   var pos = 0, priority = score(value);
246   while (pos < array.length && score(array[pos]) <= priority) { pos++; }
247   array.splice(pos, 0, value);
248 }
249
250 function nothing() {}
251
252 function createObj(base, props) {
253   var inst;
254   if (Object.create) {
255     inst = Object.create(base);
256   } else {
257     nothing.prototype = base;
258     inst = new nothing();
259   }
260   if (props) { copyObj(props, inst); }
261   return inst
262 }
263
264 var nonASCIISingleCaseWordChar = /[\u00df\u0587\u0590-\u05f4\u0600-\u06ff\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/;
265 function isWordCharBasic(ch) {
266   return /\w/.test(ch) || ch > "\x80" &&
267     (ch.toUpperCase() != ch.toLowerCase() || nonASCIISingleCaseWordChar.test(ch))
268 }
269 function isWordChar(ch, helper) {
270   if (!helper) { return isWordCharBasic(ch) }
271   if (helper.source.indexOf("\\w") > -1 && isWordCharBasic(ch)) { return true }
272   return helper.test(ch)
273 }
274
275 function isEmpty(obj) {
276   for (var n in obj) { if (obj.hasOwnProperty(n) && obj[n]) { return false } }
277   return true
278 }
279
280 // Extending unicode characters. A series of a non-extending char +
281 // any number of extending chars is treated as a single unit as far
282 // as editing and measuring is concerned. This is not fully correct,
283 // since some scripts/fonts/browsers also treat other configurations
284 // of code points as a group.
285 var extendingChars = /[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065e\u0670\u06d6-\u06dc\u06de-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0900-\u0902\u093c\u0941-\u0948\u094d\u0951-\u0955\u0962\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2\u09e3\u0a01\u0a02\u0a3c\u0a41\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81\u0a82\u0abc\u0ac1-\u0ac5\u0ac7\u0ac8\u0acd\u0ae2\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86\u0f87\u0f90-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039\u103a\u103d\u103e\u1058\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085\u1086\u108d\u109d\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193b\u1a17\u1a18\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80\u1b81\u1ba2-\u1ba5\u1ba8\u1ba9\u1c2c-\u1c33\u1c36\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1dc0-\u1de6\u1dfd-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua825\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\uaa29-\uaa2e\uaa31\uaa32\uaa35\uaa36\uaa43\uaa4c\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe5\uabe8\uabed\udc00-\udfff\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]/;
286 function isExtendingChar(ch) { return ch.charCodeAt(0) >= 768 && extendingChars.test(ch) }
287
288 // Returns a number from the range [`0`; `str.length`] unless `pos` is outside that range.
289 function skipExtendingChars(str, pos, dir) {
290   while ((dir < 0 ? pos > 0 : pos < str.length) && isExtendingChar(str.charAt(pos))) { pos += dir; }
291   return pos
292 }
293
294 // Returns the value from the range [`from`; `to`] that satisfies
295 // `pred` and is closest to `from`. Assumes that at least `to` satisfies `pred`.
296 function findFirst(pred, from, to) {
297   for (;;) {
298     if (Math.abs(from - to) <= 1) { return pred(from) ? from : to }
299     var mid = Math.floor((from + to) / 2);
300     if (pred(mid)) { to = mid; }
301     else { from = mid; }
302   }
303 }
304
305 // The display handles the DOM integration, both for input reading
306 // and content drawing. It holds references to DOM nodes and
307 // display-related state.
308
309 function Display(place, doc, input) {
310   var d = this;
311   this.input = input;
312
313   // Covers bottom-right square when both scrollbars are present.
314   d.scrollbarFiller = elt("div", null, "CodeMirror-scrollbar-filler");
315   d.scrollbarFiller.setAttribute("cm-not-content", "true");
316   // Covers bottom of gutter when coverGutterNextToScrollbar is on
317   // and h scrollbar is present.
318   d.gutterFiller = elt("div", null, "CodeMirror-gutter-filler");
319   d.gutterFiller.setAttribute("cm-not-content", "true");
320   // Will contain the actual code, positioned to cover the viewport.
321   d.lineDiv = eltP("div", null, "CodeMirror-code");
322   // Elements are added to these to represent selection and cursors.
323   d.selectionDiv = elt("div", null, null, "position: relative; z-index: 1");
324   d.cursorDiv = elt("div", null, "CodeMirror-cursors");
325   // A visibility: hidden element used to find the size of things.
326   d.measure = elt("div", null, "CodeMirror-measure");
327   // When lines outside of the viewport are measured, they are drawn in this.
328   d.lineMeasure = elt("div", null, "CodeMirror-measure");
329   // Wraps everything that needs to exist inside the vertically-padded coordinate system
330   d.lineSpace = eltP("div", [d.measure, d.lineMeasure, d.selectionDiv, d.cursorDiv, d.lineDiv],
331                     null, "position: relative; outline: none");
332   var lines = eltP("div", [d.lineSpace], "CodeMirror-lines");
333   // Moved around its parent to cover visible view.
334   d.mover = elt("div", [lines], null, "position: relative");
335   // Set to the height of the document, allowing scrolling.
336   d.sizer = elt("div", [d.mover], "CodeMirror-sizer");
337   d.sizerWidth = null;
338   // Behavior of elts with overflow: auto and padding is
339   // inconsistent across browsers. This is used to ensure the
340   // scrollable area is big enough.
341   d.heightForcer = elt("div", null, null, "position: absolute; height: " + scrollerGap + "px; width: 1px;");
342   // Will contain the gutters, if any.
343   d.gutters = elt("div", null, "CodeMirror-gutters");
344   d.lineGutter = null;
345   // Actual scrollable element.
346   d.scroller = elt("div", [d.sizer, d.heightForcer, d.gutters], "CodeMirror-scroll");
347   d.scroller.setAttribute("tabIndex", "-1");
348   // The element in which the editor lives.
349   d.wrapper = elt("div", [d.scrollbarFiller, d.gutterFiller, d.scroller], "CodeMirror");
350
351   // Work around IE7 z-index bug (not perfect, hence IE7 not really being supported)
352   if (ie && ie_version < 8) { d.gutters.style.zIndex = -1; d.scroller.style.paddingRight = 0; }
353   if (!webkit && !(gecko && mobile)) { d.scroller.draggable = true; }
354
355   if (place) {
356     if (place.appendChild) { place.appendChild(d.wrapper); }
357     else { place(d.wrapper); }
358   }
359
360   // Current rendered range (may be bigger than the view window).
361   d.viewFrom = d.viewTo = doc.first;
362   d.reportedViewFrom = d.reportedViewTo = doc.first;
363   // Information about the rendered lines.
364   d.view = [];
365   d.renderedView = null;
366   // Holds info about a single rendered line when it was rendered
367   // for measurement, while not in view.
368   d.externalMeasured = null;
369   // Empty space (in pixels) above the view
370   d.viewOffset = 0;
371   d.lastWrapHeight = d.lastWrapWidth = 0;
372   d.updateLineNumbers = null;
373
374   d.nativeBarWidth = d.barHeight = d.barWidth = 0;
375   d.scrollbarsClipped = false;
376
377   // Used to only resize the line number gutter when necessary (when
378   // the amount of lines crosses a boundary that makes its width change)
379   d.lineNumWidth = d.lineNumInnerWidth = d.lineNumChars = null;
380   // Set to true when a non-horizontal-scrolling line widget is
381   // added. As an optimization, line widget aligning is skipped when
382   // this is false.
383   d.alignWidgets = false;
384
385   d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = null;
386
387   // Tracks the maximum line length so that the horizontal scrollbar
388   // can be kept static when scrolling.
389   d.maxLine = null;
390   d.maxLineLength = 0;
391   d.maxLineChanged = false;
392
393   // Used for measuring wheel scrolling granularity
394   d.wheelDX = d.wheelDY = d.wheelStartX = d.wheelStartY = null;
395
396   // True when shift is held down.
397   d.shift = false;
398
399   // Used to track whether anything happened since the context menu
400   // was opened.
401   d.selForContextMenu = null;
402
403   d.activeTouch = null;
404
405   input.init(d);
406 }
407
408 // Find the line object corresponding to the given line number.
409 function getLine(doc, n) {
410   n -= doc.first;
411   if (n < 0 || n >= doc.size) { throw new Error("There is no line " + (n + doc.first) + " in the document.") }
412   var chunk = doc;
413   while (!chunk.lines) {
414     for (var i = 0;; ++i) {
415       var child = chunk.children[i], sz = child.chunkSize();
416       if (n < sz) { chunk = child; break }
417       n -= sz;
418     }
419   }
420   return chunk.lines[n]
421 }
422
423 // Get the part of a document between two positions, as an array of
424 // strings.
425 function getBetween(doc, start, end) {
426   var out = [], n = start.line;
427   doc.iter(start.line, end.line + 1, function (line) {
428     var text = line.text;
429     if (n == end.line) { text = text.slice(0, end.ch); }
430     if (n == start.line) { text = text.slice(start.ch); }
431     out.push(text);
432     ++n;
433   });
434   return out
435 }
436 // Get the lines between from and to, as array of strings.
437 function getLines(doc, from, to) {
438   var out = [];
439   doc.iter(from, to, function (line) { out.push(line.text); }); // iter aborts when callback returns truthy value
440   return out
441 }
442
443 // Update the height of a line, propagating the height change
444 // upwards to parent nodes.
445 function updateLineHeight(line, height) {
446   var diff = height - line.height;
447   if (diff) { for (var n = line; n; n = n.parent) { n.height += diff; } }
448 }
449
450 // Given a line object, find its line number by walking up through
451 // its parent links.
452 function lineNo(line) {
453   if (line.parent == null) { return null }
454   var cur = line.parent, no = indexOf(cur.lines, line);
455   for (var chunk = cur.parent; chunk; cur = chunk, chunk = chunk.parent) {
456     for (var i = 0;; ++i) {
457       if (chunk.children[i] == cur) { break }
458       no += chunk.children[i].chunkSize();
459     }
460   }
461   return no + cur.first
462 }
463
464 // Find the line at the given vertical position, using the height
465 // information in the document tree.
466 function lineAtHeight(chunk, h) {
467   var n = chunk.first;
468   outer: do {
469     for (var i$1 = 0; i$1 < chunk.children.length; ++i$1) {
470       var child = chunk.children[i$1], ch = child.height;
471       if (h < ch) { chunk = child; continue outer }
472       h -= ch;
473       n += child.chunkSize();
474     }
475     return n
476   } while (!chunk.lines)
477   var i = 0;
478   for (; i < chunk.lines.length; ++i) {
479     var line = chunk.lines[i], lh = line.height;
480     if (h < lh) { break }
481     h -= lh;
482   }
483   return n + i
484 }
485
486 function isLine(doc, l) {return l >= doc.first && l < doc.first + doc.size}
487
488 function lineNumberFor(options, i) {
489   return String(options.lineNumberFormatter(i + options.firstLineNumber))
490 }
491
492 // A Pos instance represents a position within the text.
493 function Pos(line, ch, sticky) {
494   if ( sticky === void 0 ) sticky = null;
495
496   if (!(this instanceof Pos)) { return new Pos(line, ch, sticky) }
497   this.line = line;
498   this.ch = ch;
499   this.sticky = sticky;
500 }
501
502 // Compare two positions, return 0 if they are the same, a negative
503 // number when a is less, and a positive number otherwise.
504 function cmp(a, b) { return a.line - b.line || a.ch - b.ch }
505
506 function equalCursorPos(a, b) { return a.sticky == b.sticky && cmp(a, b) == 0 }
507
508 function copyPos(x) {return Pos(x.line, x.ch)}
509 function maxPos(a, b) { return cmp(a, b) < 0 ? b : a }
510 function minPos(a, b) { return cmp(a, b) < 0 ? a : b }
511
512 // Most of the external API clips given positions to make sure they
513 // actually exist within the document.
514 function clipLine(doc, n) {return Math.max(doc.first, Math.min(n, doc.first + doc.size - 1))}
515 function clipPos(doc, pos) {
516   if (pos.line < doc.first) { return Pos(doc.first, 0) }
517   var last = doc.first + doc.size - 1;
518   if (pos.line > last) { return Pos(last, getLine(doc, last).text.length) }
519   return clipToLen(pos, getLine(doc, pos.line).text.length)
520 }
521 function clipToLen(pos, linelen) {
522   var ch = pos.ch;
523   if (ch == null || ch > linelen) { return Pos(pos.line, linelen) }
524   else if (ch < 0) { return Pos(pos.line, 0) }
525   else { return pos }
526 }
527 function clipPosArray(doc, array) {
528   var out = [];
529   for (var i = 0; i < array.length; i++) { out[i] = clipPos(doc, array[i]); }
530   return out
531 }
532
533 // Optimize some code when these features are not used.
534 var sawReadOnlySpans = false;
535 var sawCollapsedSpans = false;
536
537 function seeReadOnlySpans() {
538   sawReadOnlySpans = true;
539 }
540
541 function seeCollapsedSpans() {
542   sawCollapsedSpans = true;
543 }
544
545 // TEXTMARKER SPANS
546
547 function MarkedSpan(marker, from, to) {
548   this.marker = marker;
549   this.from = from; this.to = to;
550 }
551
552 // Search an array of spans for a span matching the given marker.
553 function getMarkedSpanFor(spans, marker) {
554   if (spans) { for (var i = 0; i < spans.length; ++i) {
555     var span = spans[i];
556     if (span.marker == marker) { return span }
557   } }
558 }
559 // Remove a span from an array, returning undefined if no spans are
560 // left (we don't store arrays for lines without spans).
561 function removeMarkedSpan(spans, span) {
562   var r;
563   for (var i = 0; i < spans.length; ++i)
564     { if (spans[i] != span) { (r || (r = [])).push(spans[i]); } }
565   return r
566 }
567 // Add a span to a line.
568 function addMarkedSpan(line, span) {
569   line.markedSpans = line.markedSpans ? line.markedSpans.concat([span]) : [span];
570   span.marker.attachLine(line);
571 }
572
573 // Used for the algorithm that adjusts markers for a change in the
574 // document. These functions cut an array of spans at a given
575 // character position, returning an array of remaining chunks (or
576 // undefined if nothing remains).
577 function markedSpansBefore(old, startCh, isInsert) {
578   var nw;
579   if (old) { for (var i = 0; i < old.length; ++i) {
580     var span = old[i], marker = span.marker;
581     var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= startCh : span.from < startCh);
582     if (startsBefore || span.from == startCh && marker.type == "bookmark" && (!isInsert || !span.marker.insertLeft)) {
583       var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= startCh : span.to > startCh);(nw || (nw = [])).push(new MarkedSpan(marker, span.from, endsAfter ? null : span.to));
584     }
585   } }
586   return nw
587 }
588 function markedSpansAfter(old, endCh, isInsert) {
589   var nw;
590   if (old) { for (var i = 0; i < old.length; ++i) {
591     var span = old[i], marker = span.marker;
592     var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= endCh : span.to > endCh);
593     if (endsAfter || span.from == endCh && marker.type == "bookmark" && (!isInsert || span.marker.insertLeft)) {
594       var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= endCh : span.from < endCh);(nw || (nw = [])).push(new MarkedSpan(marker, startsBefore ? null : span.from - endCh,
595                                             span.to == null ? null : span.to - endCh));
596     }
597   } }
598   return nw
599 }
600
601 // Given a change object, compute the new set of marker spans that
602 // cover the line in which the change took place. Removes spans
603 // entirely within the change, reconnects spans belonging to the
604 // same marker that appear on both sides of the change, and cuts off
605 // spans partially within the change. Returns an array of span
606 // arrays with one element for each line in (after) the change.
607 function stretchSpansOverChange(doc, change) {
608   if (change.full) { return null }
609   var oldFirst = isLine(doc, change.from.line) && getLine(doc, change.from.line).markedSpans;
610   var oldLast = isLine(doc, change.to.line) && getLine(doc, change.to.line).markedSpans;
611   if (!oldFirst && !oldLast) { return null }
612
613   var startCh = change.from.ch, endCh = change.to.ch, isInsert = cmp(change.from, change.to) == 0;
614   // Get the spans that 'stick out' on both sides
615   var first = markedSpansBefore(oldFirst, startCh, isInsert);
616   var last = markedSpansAfter(oldLast, endCh, isInsert);
617
618   // Next, merge those two ends
619   var sameLine = change.text.length == 1, offset = lst(change.text).length + (sameLine ? startCh : 0);
620   if (first) {
621     // Fix up .to properties of first
622     for (var i = 0; i < first.length; ++i) {
623       var span = first[i];
624       if (span.to == null) {
625         var found = getMarkedSpanFor(last, span.marker);
626         if (!found) { span.to = startCh; }
627         else if (sameLine) { span.to = found.to == null ? null : found.to + offset; }
628       }
629     }
630   }
631   if (last) {
632     // Fix up .from in last (or move them into first in case of sameLine)
633     for (var i$1 = 0; i$1 < last.length; ++i$1) {
634       var span$1 = last[i$1];
635       if (span$1.to != null) { span$1.to += offset; }
636       if (span$1.from == null) {
637         var found$1 = getMarkedSpanFor(first, span$1.marker);
638         if (!found$1) {
639           span$1.from = offset;
640           if (sameLine) { (first || (first = [])).push(span$1); }
641         }
642       } else {
643         span$1.from += offset;
644         if (sameLine) { (first || (first = [])).push(span$1); }
645       }
646     }
647   }
648   // Make sure we didn't create any zero-length spans
649   if (first) { first = clearEmptySpans(first); }
650   if (last && last != first) { last = clearEmptySpans(last); }
651
652   var newMarkers = [first];
653   if (!sameLine) {
654     // Fill gap with whole-line-spans
655     var gap = change.text.length - 2, gapMarkers;
656     if (gap > 0 && first)
657       { for (var i$2 = 0; i$2 < first.length; ++i$2)
658         { if (first[i$2].to == null)
659           { (gapMarkers || (gapMarkers = [])).push(new MarkedSpan(first[i$2].marker, null, null)); } } }
660     for (var i$3 = 0; i$3 < gap; ++i$3)
661       { newMarkers.push(gapMarkers); }
662     newMarkers.push(last);
663   }
664   return newMarkers
665 }
666
667 // Remove spans that are empty and don't have a clearWhenEmpty
668 // option of false.
669 function clearEmptySpans(spans) {
670   for (var i = 0; i < spans.length; ++i) {
671     var span = spans[i];
672     if (span.from != null && span.from == span.to && span.marker.clearWhenEmpty !== false)
673       { spans.splice(i--, 1); }
674   }
675   if (!spans.length) { return null }
676   return spans
677 }
678
679 // Used to 'clip' out readOnly ranges when making a change.
680 function removeReadOnlyRanges(doc, from, to) {
681   var markers = null;
682   doc.iter(from.line, to.line + 1, function (line) {
683     if (line.markedSpans) { for (var i = 0; i < line.markedSpans.length; ++i) {
684       var mark = line.markedSpans[i].marker;
685       if (mark.readOnly && (!markers || indexOf(markers, mark) == -1))
686         { (markers || (markers = [])).push(mark); }
687     } }
688   });
689   if (!markers) { return null }
690   var parts = [{from: from, to: to}];
691   for (var i = 0; i < markers.length; ++i) {
692     var mk = markers[i], m = mk.find(0);
693     for (var j = 0; j < parts.length; ++j) {
694       var p = parts[j];
695       if (cmp(p.to, m.from) < 0 || cmp(p.from, m.to) > 0) { continue }
696       var newParts = [j, 1], dfrom = cmp(p.from, m.from), dto = cmp(p.to, m.to);
697       if (dfrom < 0 || !mk.inclusiveLeft && !dfrom)
698         { newParts.push({from: p.from, to: m.from}); }
699       if (dto > 0 || !mk.inclusiveRight && !dto)
700         { newParts.push({from: m.to, to: p.to}); }
701       parts.splice.apply(parts, newParts);
702       j += newParts.length - 3;
703     }
704   }
705   return parts
706 }
707
708 // Connect or disconnect spans from a line.
709 function detachMarkedSpans(line) {
710   var spans = line.markedSpans;
711   if (!spans) { return }
712   for (var i = 0; i < spans.length; ++i)
713     { spans[i].marker.detachLine(line); }
714   line.markedSpans = null;
715 }
716 function attachMarkedSpans(line, spans) {
717   if (!spans) { return }
718   for (var i = 0; i < spans.length; ++i)
719     { spans[i].marker.attachLine(line); }
720   line.markedSpans = spans;
721 }
722
723 // Helpers used when computing which overlapping collapsed span
724 // counts as the larger one.
725 function extraLeft(marker) { return marker.inclusiveLeft ? -1 : 0 }
726 function extraRight(marker) { return marker.inclusiveRight ? 1 : 0 }
727
728 // Returns a number indicating which of two overlapping collapsed
729 // spans is larger (and thus includes the other). Falls back to
730 // comparing ids when the spans cover exactly the same range.
731 function compareCollapsedMarkers(a, b) {
732   var lenDiff = a.lines.length - b.lines.length;
733   if (lenDiff != 0) { return lenDiff }
734   var aPos = a.find(), bPos = b.find();
735   var fromCmp = cmp(aPos.from, bPos.from) || extraLeft(a) - extraLeft(b);
736   if (fromCmp) { return -fromCmp }
737   var toCmp = cmp(aPos.to, bPos.to) || extraRight(a) - extraRight(b);
738   if (toCmp) { return toCmp }
739   return b.id - a.id
740 }
741
742 // Find out whether a line ends or starts in a collapsed span. If
743 // so, return the marker for that span.
744 function collapsedSpanAtSide(line, start) {
745   var sps = sawCollapsedSpans && line.markedSpans, found;
746   if (sps) { for (var sp = (void 0), i = 0; i < sps.length; ++i) {
747     sp = sps[i];
748     if (sp.marker.collapsed && (start ? sp.from : sp.to) == null &&
749         (!found || compareCollapsedMarkers(found, sp.marker) < 0))
750       { found = sp.marker; }
751   } }
752   return found
753 }
754 function collapsedSpanAtStart(line) { return collapsedSpanAtSide(line, true) }
755 function collapsedSpanAtEnd(line) { return collapsedSpanAtSide(line, false) }
756
757 // Test whether there exists a collapsed span that partially
758 // overlaps (covers the start or end, but not both) of a new span.
759 // Such overlap is not allowed.
760 function conflictingCollapsedRange(doc, lineNo$$1, from, to, marker) {
761   var line = getLine(doc, lineNo$$1);
762   var sps = sawCollapsedSpans && line.markedSpans;
763   if (sps) { for (var i = 0; i < sps.length; ++i) {
764     var sp = sps[i];
765     if (!sp.marker.collapsed) { continue }
766     var found = sp.marker.find(0);
767     var fromCmp = cmp(found.from, from) || extraLeft(sp.marker) - extraLeft(marker);
768     var toCmp = cmp(found.to, to) || extraRight(sp.marker) - extraRight(marker);
769     if (fromCmp >= 0 && toCmp <= 0 || fromCmp <= 0 && toCmp >= 0) { continue }
770     if (fromCmp <= 0 && (sp.marker.inclusiveRight && marker.inclusiveLeft ? cmp(found.to, from) >= 0 : cmp(found.to, from) > 0) ||
771         fromCmp >= 0 && (sp.marker.inclusiveRight && marker.inclusiveLeft ? cmp(found.from, to) <= 0 : cmp(found.from, to) < 0))
772       { return true }
773   } }
774 }
775
776 // A visual line is a line as drawn on the screen. Folding, for
777 // example, can cause multiple logical lines to appear on the same
778 // visual line. This finds the start of the visual line that the
779 // given line is part of (usually that is the line itself).
780 function visualLine(line) {
781   var merged;
782   while (merged = collapsedSpanAtStart(line))
783     { line = merged.find(-1, true).line; }
784   return line
785 }
786
787 function visualLineEnd(line) {
788   var merged;
789   while (merged = collapsedSpanAtEnd(line))
790     { line = merged.find(1, true).line; }
791   return line
792 }
793
794 // Returns an array of logical lines that continue the visual line
795 // started by the argument, or undefined if there are no such lines.
796 function visualLineContinued(line) {
797   var merged, lines;
798   while (merged = collapsedSpanAtEnd(line)) {
799     line = merged.find(1, true).line
800     ;(lines || (lines = [])).push(line);
801   }
802   return lines
803 }
804
805 // Get the line number of the start of the visual line that the
806 // given line number is part of.
807 function visualLineNo(doc, lineN) {
808   var line = getLine(doc, lineN), vis = visualLine(line);
809   if (line == vis) { return lineN }
810   return lineNo(vis)
811 }
812
813 // Get the line number of the start of the next visual line after
814 // the given line.
815 function visualLineEndNo(doc, lineN) {
816   if (lineN > doc.lastLine()) { return lineN }
817   var line = getLine(doc, lineN), merged;
818   if (!lineIsHidden(doc, line)) { return lineN }
819   while (merged = collapsedSpanAtEnd(line))
820     { line = merged.find(1, true).line; }
821   return lineNo(line) + 1
822 }
823
824 // Compute whether a line is hidden. Lines count as hidden when they
825 // are part of a visual line that starts with another line, or when
826 // they are entirely covered by collapsed, non-widget span.
827 function lineIsHidden(doc, line) {
828   var sps = sawCollapsedSpans && line.markedSpans;
829   if (sps) { for (var sp = (void 0), i = 0; i < sps.length; ++i) {
830     sp = sps[i];
831     if (!sp.marker.collapsed) { continue }
832     if (sp.from == null) { return true }
833     if (sp.marker.widgetNode) { continue }
834     if (sp.from == 0 && sp.marker.inclusiveLeft && lineIsHiddenInner(doc, line, sp))
835       { return true }
836   } }
837 }
838 function lineIsHiddenInner(doc, line, span) {
839   if (span.to == null) {
840     var end = span.marker.find(1, true);
841     return lineIsHiddenInner(doc, end.line, getMarkedSpanFor(end.line.markedSpans, span.marker))
842   }
843   if (span.marker.inclusiveRight && span.to == line.text.length)
844     { return true }
845   for (var sp = (void 0), i = 0; i < line.markedSpans.length; ++i) {
846     sp = line.markedSpans[i];
847     if (sp.marker.collapsed && !sp.marker.widgetNode && sp.from == span.to &&
848         (sp.to == null || sp.to != span.from) &&
849         (sp.marker.inclusiveLeft || span.marker.inclusiveRight) &&
850         lineIsHiddenInner(doc, line, sp)) { return true }
851   }
852 }
853
854 // Find the height above the given line.
855 function heightAtLine(lineObj) {
856   lineObj = visualLine(lineObj);
857
858   var h = 0, chunk = lineObj.parent;
859   for (var i = 0; i < chunk.lines.length; ++i) {
860     var line = chunk.lines[i];
861     if (line == lineObj) { break }
862     else { h += line.height; }
863   }
864   for (var p = chunk.parent; p; chunk = p, p = chunk.parent) {
865     for (var i$1 = 0; i$1 < p.children.length; ++i$1) {
866       var cur = p.children[i$1];
867       if (cur == chunk) { break }
868       else { h += cur.height; }
869     }
870   }
871   return h
872 }
873
874 // Compute the character length of a line, taking into account
875 // collapsed ranges (see markText) that might hide parts, and join
876 // other lines onto it.
877 function lineLength(line) {
878   if (line.height == 0) { return 0 }
879   var len = line.text.length, merged, cur = line;
880   while (merged = collapsedSpanAtStart(cur)) {
881     var found = merged.find(0, true);
882     cur = found.from.line;
883     len += found.from.ch - found.to.ch;
884   }
885   cur = line;
886   while (merged = collapsedSpanAtEnd(cur)) {
887     var found$1 = merged.find(0, true);
888     len -= cur.text.length - found$1.from.ch;
889     cur = found$1.to.line;
890     len += cur.text.length - found$1.to.ch;
891   }
892   return len
893 }
894
895 // Find the longest line in the document.
896 function findMaxLine(cm) {
897   var d = cm.display, doc = cm.doc;
898   d.maxLine = getLine(doc, doc.first);
899   d.maxLineLength = lineLength(d.maxLine);
900   d.maxLineChanged = true;
901   doc.iter(function (line) {
902     var len = lineLength(line);
903     if (len > d.maxLineLength) {
904       d.maxLineLength = len;
905       d.maxLine = line;
906     }
907   });
908 }
909
910 // BIDI HELPERS
911
912 function iterateBidiSections(order, from, to, f) {
913   if (!order) { return f(from, to, "ltr") }
914   var found = false;
915   for (var i = 0; i < order.length; ++i) {
916     var part = order[i];
917     if (part.from < to && part.to > from || from == to && part.to == from) {
918       f(Math.max(part.from, from), Math.min(part.to, to), part.level == 1 ? "rtl" : "ltr");
919       found = true;
920     }
921   }
922   if (!found) { f(from, to, "ltr"); }
923 }
924
925 var bidiOther = null;
926 function getBidiPartAt(order, ch, sticky) {
927   var found;
928   bidiOther = null;
929   for (var i = 0; i < order.length; ++i) {
930     var cur = order[i];
931     if (cur.from < ch && cur.to > ch) { return i }
932     if (cur.to == ch) {
933       if (cur.from != cur.to && sticky == "before") { found = i; }
934       else { bidiOther = i; }
935     }
936     if (cur.from == ch) {
937       if (cur.from != cur.to && sticky != "before") { found = i; }
938       else { bidiOther = i; }
939     }
940   }
941   return found != null ? found : bidiOther
942 }
943
944 // Bidirectional ordering algorithm
945 // See http://unicode.org/reports/tr9/tr9-13.html for the algorithm
946 // that this (partially) implements.
947
948 // One-char codes used for character types:
949 // L (L):   Left-to-Right
950 // R (R):   Right-to-Left
951 // r (AL):  Right-to-Left Arabic
952 // 1 (EN):  European Number
953 // + (ES):  European Number Separator
954 // % (ET):  European Number Terminator
955 // n (AN):  Arabic Number
956 // , (CS):  Common Number Separator
957 // m (NSM): Non-Spacing Mark
958 // b (BN):  Boundary Neutral
959 // s (B):   Paragraph Separator
960 // t (S):   Segment Separator
961 // w (WS):  Whitespace
962 // N (ON):  Other Neutrals
963
964 // Returns null if characters are ordered as they appear
965 // (left-to-right), or an array of sections ({from, to, level}
966 // objects) in the order in which they occur visually.
967 var bidiOrdering = (function() {
968   // Character types for codepoints 0 to 0xff
969   var lowTypes = "bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN";
970   // Character types for codepoints 0x600 to 0x6f9
971   var arabicTypes = "nnnnnnNNr%%r,rNNmmmmmmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmmmnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmnNmmmmmmrrmmNmmmmrr1111111111";
972   function charType(code) {
973     if (code <= 0xf7) { return lowTypes.charAt(code) }
974     else if (0x590 <= code && code <= 0x5f4) { return "R" }
975     else if (0x600 <= code && code <= 0x6f9) { return arabicTypes.charAt(code - 0x600) }
976     else if (0x6ee <= code && code <= 0x8ac) { return "r" }
977     else if (0x2000 <= code && code <= 0x200b) { return "w" }
978     else if (code == 0x200c) { return "b" }
979     else { return "L" }
980   }
981
982   var bidiRE = /[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/;
983   var isNeutral = /[stwN]/, isStrong = /[LRr]/, countsAsLeft = /[Lb1n]/, countsAsNum = /[1n]/;
984
985   function BidiSpan(level, from, to) {
986     this.level = level;
987     this.from = from; this.to = to;
988   }
989
990   return function(str, direction) {
991     var outerType = direction == "ltr" ? "L" : "R";
992
993     if (str.length == 0 || direction == "ltr" && !bidiRE.test(str)) { return false }
994     var len = str.length, types = [];
995     for (var i = 0; i < len; ++i)
996       { types.push(charType(str.charCodeAt(i))); }
997
998     // W1. Examine each non-spacing mark (NSM) in the level run, and
999     // change the type of the NSM to the type of the previous
1000     // character. If the NSM is at the start of the level run, it will
1001     // get the type of sor.
1002     for (var i$1 = 0, prev = outerType; i$1 < len; ++i$1) {
1003       var type = types[i$1];
1004       if (type == "m") { types[i$1] = prev; }
1005       else { prev = type; }
1006     }
1007
1008     // W2. Search backwards from each instance of a European number
1009     // until the first strong type (R, L, AL, or sor) is found. If an
1010     // AL is found, change the type of the European number to Arabic
1011     // number.
1012     // W3. Change all ALs to R.
1013     for (var i$2 = 0, cur = outerType; i$2 < len; ++i$2) {
1014       var type$1 = types[i$2];
1015       if (type$1 == "1" && cur == "r") { types[i$2] = "n"; }
1016       else if (isStrong.test(type$1)) { cur = type$1; if (type$1 == "r") { types[i$2] = "R"; } }
1017     }
1018
1019     // W4. A single European separator between two European numbers
1020     // changes to a European number. A single common separator between
1021     // two numbers of the same type changes to that type.
1022     for (var i$3 = 1, prev$1 = types[0]; i$3 < len - 1; ++i$3) {
1023       var type$2 = types[i$3];
1024       if (type$2 == "+" && prev$1 == "1" && types[i$3+1] == "1") { types[i$3] = "1"; }
1025       else if (type$2 == "," && prev$1 == types[i$3+1] &&
1026                (prev$1 == "1" || prev$1 == "n")) { types[i$3] = prev$1; }
1027       prev$1 = type$2;
1028     }
1029
1030     // W5. A sequence of European terminators adjacent to European
1031     // numbers changes to all European numbers.
1032     // W6. Otherwise, separators and terminators change to Other
1033     // Neutral.
1034     for (var i$4 = 0; i$4 < len; ++i$4) {
1035       var type$3 = types[i$4];
1036       if (type$3 == ",") { types[i$4] = "N"; }
1037       else if (type$3 == "%") {
1038         var end = (void 0);
1039         for (end = i$4 + 1; end < len && types[end] == "%"; ++end) {}
1040         var replace = (i$4 && types[i$4-1] == "!") || (end < len && types[end] == "1") ? "1" : "N";
1041         for (var j = i$4; j < end; ++j) { types[j] = replace; }
1042         i$4 = end - 1;
1043       }
1044     }
1045
1046     // W7. Search backwards from each instance of a European number
1047     // until the first strong type (R, L, or sor) is found. If an L is
1048     // found, then change the type of the European number to L.
1049     for (var i$5 = 0, cur$1 = outerType; i$5 < len; ++i$5) {
1050       var type$4 = types[i$5];
1051       if (cur$1 == "L" && type$4 == "1") { types[i$5] = "L"; }
1052       else if (isStrong.test(type$4)) { cur$1 = type$4; }
1053     }
1054
1055     // N1. A sequence of neutrals takes the direction of the
1056     // surrounding strong text if the text on both sides has the same
1057     // direction. European and Arabic numbers act as if they were R in
1058     // terms of their influence on neutrals. Start-of-level-run (sor)
1059     // and end-of-level-run (eor) are used at level run boundaries.
1060     // N2. Any remaining neutrals take the embedding direction.
1061     for (var i$6 = 0; i$6 < len; ++i$6) {
1062       if (isNeutral.test(types[i$6])) {
1063         var end$1 = (void 0);
1064         for (end$1 = i$6 + 1; end$1 < len && isNeutral.test(types[end$1]); ++end$1) {}
1065         var before = (i$6 ? types[i$6-1] : outerType) == "L";
1066         var after = (end$1 < len ? types[end$1] : outerType) == "L";
1067         var replace$1 = before == after ? (before ? "L" : "R") : outerType;
1068         for (var j$1 = i$6; j$1 < end$1; ++j$1) { types[j$1] = replace$1; }
1069         i$6 = end$1 - 1;
1070       }
1071     }
1072
1073     // Here we depart from the documented algorithm, in order to avoid
1074     // building up an actual levels array. Since there are only three
1075     // levels (0, 1, 2) in an implementation that doesn't take
1076     // explicit embedding into account, we can build up the order on
1077     // the fly, without following the level-based algorithm.
1078     var order = [], m;
1079     for (var i$7 = 0; i$7 < len;) {
1080       if (countsAsLeft.test(types[i$7])) {
1081         var start = i$7;
1082         for (++i$7; i$7 < len && countsAsLeft.test(types[i$7]); ++i$7) {}
1083         order.push(new BidiSpan(0, start, i$7));
1084       } else {
1085         var pos = i$7, at = order.length;
1086         for (++i$7; i$7 < len && types[i$7] != "L"; ++i$7) {}
1087         for (var j$2 = pos; j$2 < i$7;) {
1088           if (countsAsNum.test(types[j$2])) {
1089             if (pos < j$2) { order.splice(at, 0, new BidiSpan(1, pos, j$2)); }
1090             var nstart = j$2;
1091             for (++j$2; j$2 < i$7 && countsAsNum.test(types[j$2]); ++j$2) {}
1092             order.splice(at, 0, new BidiSpan(2, nstart, j$2));
1093             pos = j$2;
1094           } else { ++j$2; }
1095         }
1096         if (pos < i$7) { order.splice(at, 0, new BidiSpan(1, pos, i$7)); }
1097       }
1098     }
1099     if (order[0].level == 1 && (m = str.match(/^\s+/))) {
1100       order[0].from = m[0].length;
1101       order.unshift(new BidiSpan(0, 0, m[0].length));
1102     }
1103     if (lst(order).level == 1 && (m = str.match(/\s+$/))) {
1104       lst(order).to -= m[0].length;
1105       order.push(new BidiSpan(0, len - m[0].length, len));
1106     }
1107
1108     return direction == "rtl" ? order.reverse() : order
1109   }
1110 })();
1111
1112 // Get the bidi ordering for the given line (and cache it). Returns
1113 // false for lines that are fully left-to-right, and an array of
1114 // BidiSpan objects otherwise.
1115 function getOrder(line, direction) {
1116   var order = line.order;
1117   if (order == null) { order = line.order = bidiOrdering(line.text, direction); }
1118   return order
1119 }
1120
1121 function moveCharLogically(line, ch, dir) {
1122   var target = skipExtendingChars(line.text, ch + dir, dir);
1123   return target < 0 || target > line.text.length ? null : target
1124 }
1125
1126 function moveLogically(line, start, dir) {
1127   var ch = moveCharLogically(line, start.ch, dir);
1128   return ch == null ? null : new Pos(start.line, ch, dir < 0 ? "after" : "before")
1129 }
1130
1131 function endOfLine(visually, cm, lineObj, lineNo, dir) {
1132   if (visually) {
1133     var order = getOrder(lineObj, cm.doc.direction);
1134     if (order) {
1135       var part = dir < 0 ? lst(order) : order[0];
1136       var moveInStorageOrder = (dir < 0) == (part.level == 1);
1137       var sticky = moveInStorageOrder ? "after" : "before";
1138       var ch;
1139       // With a wrapped rtl chunk (possibly spanning multiple bidi parts),
1140       // it could be that the last bidi part is not on the last visual line,
1141       // since visual lines contain content order-consecutive chunks.
1142       // Thus, in rtl, we are looking for the first (content-order) character
1143       // in the rtl chunk that is on the last line (that is, the same line
1144       // as the last (content-order) character).
1145       if (part.level > 0) {
1146         var prep = prepareMeasureForLine(cm, lineObj);
1147         ch = dir < 0 ? lineObj.text.length - 1 : 0;
1148         var targetTop = measureCharPrepared(cm, prep, ch).top;
1149         ch = findFirst(function (ch) { return measureCharPrepared(cm, prep, ch).top == targetTop; }, (dir < 0) == (part.level == 1) ? part.from : part.to - 1, ch);
1150         if (sticky == "before") { ch = moveCharLogically(lineObj, ch, 1); }
1151       } else { ch = dir < 0 ? part.to : part.from; }
1152       return new Pos(lineNo, ch, sticky)
1153     }
1154   }
1155   return new Pos(lineNo, dir < 0 ? lineObj.text.length : 0, dir < 0 ? "before" : "after")
1156 }
1157
1158 function moveVisually(cm, line, start, dir) {
1159   var bidi = getOrder(line, cm.doc.direction);
1160   if (!bidi) { return moveLogically(line, start, dir) }
1161   if (start.ch >= line.text.length) {
1162     start.ch = line.text.length;
1163     start.sticky = "before";
1164   } else if (start.ch <= 0) {
1165     start.ch = 0;
1166     start.sticky = "after";
1167   }
1168   var partPos = getBidiPartAt(bidi, start.ch, start.sticky), part = bidi[partPos];
1169   if (cm.doc.direction == "ltr" && part.level % 2 == 0 && (dir > 0 ? part.to > start.ch : part.from < start.ch)) {
1170     // Case 1: We move within an ltr part in an ltr editor. Even with wrapped lines,
1171     // nothing interesting happens.
1172     return moveLogically(line, start, dir)
1173   }
1174
1175   var mv = function (pos, dir) { return moveCharLogically(line, pos instanceof Pos ? pos.ch : pos, dir); };
1176   var prep;
1177   var getWrappedLineExtent = function (ch) {
1178     if (!cm.options.lineWrapping) { return {begin: 0, end: line.text.length} }
1179     prep = prep || prepareMeasureForLine(cm, line);
1180     return wrappedLineExtentChar(cm, line, prep, ch)
1181   };
1182   var wrappedLineExtent = getWrappedLineExtent(start.sticky == "before" ? mv(start, -1) : start.ch);
1183
1184   if (cm.doc.direction == "rtl" || part.level == 1) {
1185     var moveInStorageOrder = (part.level == 1) == (dir < 0);
1186     var ch = mv(start, moveInStorageOrder ? 1 : -1);
1187     if (ch != null && (!moveInStorageOrder ? ch >= part.from && ch >= wrappedLineExtent.begin : ch <= part.to && ch <= wrappedLineExtent.end)) {
1188       // Case 2: We move within an rtl part or in an rtl editor on the same visual line
1189       var sticky = moveInStorageOrder ? "before" : "after";
1190       return new Pos(start.line, ch, sticky)
1191     }
1192   }
1193
1194   // Case 3: Could not move within this bidi part in this visual line, so leave
1195   // the current bidi part
1196
1197   var searchInVisualLine = function (partPos, dir, wrappedLineExtent) {
1198     var getRes = function (ch, moveInStorageOrder) { return moveInStorageOrder
1199       ? new Pos(start.line, mv(ch, 1), "before")
1200       : new Pos(start.line, ch, "after"); };
1201
1202     for (; partPos >= 0 && partPos < bidi.length; partPos += dir) {
1203       var part = bidi[partPos];
1204       var moveInStorageOrder = (dir > 0) == (part.level != 1);
1205       var ch = moveInStorageOrder ? wrappedLineExtent.begin : mv(wrappedLineExtent.end, -1);
1206       if (part.from <= ch && ch < part.to) { return getRes(ch, moveInStorageOrder) }
1207       ch = moveInStorageOrder ? part.from : mv(part.to, -1);
1208       if (wrappedLineExtent.begin <= ch && ch < wrappedLineExtent.end) { return getRes(ch, moveInStorageOrder) }
1209     }
1210   };
1211
1212   // Case 3a: Look for other bidi parts on the same visual line
1213   var res = searchInVisualLine(partPos + dir, dir, wrappedLineExtent);
1214   if (res) { return res }
1215
1216   // Case 3b: Look for other bidi parts on the next visual line
1217   var nextCh = dir > 0 ? wrappedLineExtent.end : mv(wrappedLineExtent.begin, -1);
1218   if (nextCh != null && !(dir > 0 && nextCh == line.text.length)) {
1219     res = searchInVisualLine(dir > 0 ? 0 : bidi.length - 1, dir, getWrappedLineExtent(nextCh));
1220     if (res) { return res }
1221   }
1222
1223   // Case 4: Nowhere to move
1224   return null
1225 }
1226
1227 // EVENT HANDLING
1228
1229 // Lightweight event framework. on/off also work on DOM nodes,
1230 // registering native DOM handlers.
1231
1232 var noHandlers = [];
1233
1234 var on = function(emitter, type, f) {
1235   if (emitter.addEventListener) {
1236     emitter.addEventListener(type, f, false);
1237   } else if (emitter.attachEvent) {
1238     emitter.attachEvent("on" + type, f);
1239   } else {
1240     var map$$1 = emitter._handlers || (emitter._handlers = {});
1241     map$$1[type] = (map$$1[type] || noHandlers).concat(f);
1242   }
1243 };
1244
1245 function getHandlers(emitter, type) {
1246   return emitter._handlers && emitter._handlers[type] || noHandlers
1247 }
1248
1249 function off(emitter, type, f) {
1250   if (emitter.removeEventListener) {
1251     emitter.removeEventListener(type, f, false);
1252   } else if (emitter.detachEvent) {
1253     emitter.detachEvent("on" + type, f);
1254   } else {
1255     var map$$1 = emitter._handlers, arr = map$$1 && map$$1[type];
1256     if (arr) {
1257       var index = indexOf(arr, f);
1258       if (index > -1)
1259         { map$$1[type] = arr.slice(0, index).concat(arr.slice(index + 1)); }
1260     }
1261   }
1262 }
1263
1264 function signal(emitter, type /*, values...*/) {
1265   var handlers = getHandlers(emitter, type);
1266   if (!handlers.length) { return }
1267   var args = Array.prototype.slice.call(arguments, 2);
1268   for (var i = 0; i < handlers.length; ++i) { handlers[i].apply(null, args); }
1269 }
1270
1271 // The DOM events that CodeMirror handles can be overridden by
1272 // registering a (non-DOM) handler on the editor for the event name,
1273 // and preventDefault-ing the event in that handler.
1274 function signalDOMEvent(cm, e, override) {
1275   if (typeof e == "string")
1276     { e = {type: e, preventDefault: function() { this.defaultPrevented = true; }}; }
1277   signal(cm, override || e.type, cm, e);
1278   return e_defaultPrevented(e) || e.codemirrorIgnore
1279 }
1280
1281 function signalCursorActivity(cm) {
1282   var arr = cm._handlers && cm._handlers.cursorActivity;
1283   if (!arr) { return }
1284   var set = cm.curOp.cursorActivityHandlers || (cm.curOp.cursorActivityHandlers = []);
1285   for (var i = 0; i < arr.length; ++i) { if (indexOf(set, arr[i]) == -1)
1286     { set.push(arr[i]); } }
1287 }
1288
1289 function hasHandler(emitter, type) {
1290   return getHandlers(emitter, type).length > 0
1291 }
1292
1293 // Add on and off methods to a constructor's prototype, to make
1294 // registering events on such objects more convenient.
1295 function eventMixin(ctor) {
1296   ctor.prototype.on = function(type, f) {on(this, type, f);};
1297   ctor.prototype.off = function(type, f) {off(this, type, f);};
1298 }
1299
1300 // Due to the fact that we still support jurassic IE versions, some
1301 // compatibility wrappers are needed.
1302
1303 function e_preventDefault(e) {
1304   if (e.preventDefault) { e.preventDefault(); }
1305   else { e.returnValue = false; }
1306 }
1307 function e_stopPropagation(e) {
1308   if (e.stopPropagation) { e.stopPropagation(); }
1309   else { e.cancelBubble = true; }
1310 }
1311 function e_defaultPrevented(e) {
1312   return e.defaultPrevented != null ? e.defaultPrevented : e.returnValue == false
1313 }
1314 function e_stop(e) {e_preventDefault(e); e_stopPropagation(e);}
1315
1316 function e_target(e) {return e.target || e.srcElement}
1317 function e_button(e) {
1318   var b = e.which;
1319   if (b == null) {
1320     if (e.button & 1) { b = 1; }
1321     else if (e.button & 2) { b = 3; }
1322     else if (e.button & 4) { b = 2; }
1323   }
1324   if (mac && e.ctrlKey && b == 1) { b = 3; }
1325   return b
1326 }
1327
1328 // Detect drag-and-drop
1329 var dragAndDrop = function() {
1330   // There is *some* kind of drag-and-drop support in IE6-8, but I
1331   // couldn't get it to work yet.
1332   if (ie && ie_version < 9) { return false }
1333   var div = elt('div');
1334   return "draggable" in div || "dragDrop" in div
1335 }();
1336
1337 var zwspSupported;
1338 function zeroWidthElement(measure) {
1339   if (zwspSupported == null) {
1340     var test = elt("span", "\u200b");
1341     removeChildrenAndAdd(measure, elt("span", [test, document.createTextNode("x")]));
1342     if (measure.firstChild.offsetHeight != 0)
1343       { zwspSupported = test.offsetWidth <= 1 && test.offsetHeight > 2 && !(ie && ie_version < 8); }
1344   }
1345   var node = zwspSupported ? elt("span", "\u200b") :
1346     elt("span", "\u00a0", null, "display: inline-block; width: 1px; margin-right: -1px");
1347   node.setAttribute("cm-text", "");
1348   return node
1349 }
1350
1351 // Feature-detect IE's crummy client rect reporting for bidi text
1352 var badBidiRects;
1353 function hasBadBidiRects(measure) {
1354   if (badBidiRects != null) { return badBidiRects }
1355   var txt = removeChildrenAndAdd(measure, document.createTextNode("A\u062eA"));
1356   var r0 = range(txt, 0, 1).getBoundingClientRect();
1357   var r1 = range(txt, 1, 2).getBoundingClientRect();
1358   removeChildren(measure);
1359   if (!r0 || r0.left == r0.right) { return false } // Safari returns null in some cases (#2780)
1360   return badBidiRects = (r1.right - r0.right < 3)
1361 }
1362
1363 // See if "".split is the broken IE version, if so, provide an
1364 // alternative way to split lines.
1365 var splitLinesAuto = "\n\nb".split(/\n/).length != 3 ? function (string) {
1366   var pos = 0, result = [], l = string.length;
1367   while (pos <= l) {
1368     var nl = string.indexOf("\n", pos);
1369     if (nl == -1) { nl = string.length; }
1370     var line = string.slice(pos, string.charAt(nl - 1) == "\r" ? nl - 1 : nl);
1371     var rt = line.indexOf("\r");
1372     if (rt != -1) {
1373       result.push(line.slice(0, rt));
1374       pos += rt + 1;
1375     } else {
1376       result.push(line);
1377       pos = nl + 1;
1378     }
1379   }
1380   return result
1381 } : function (string) { return string.split(/\r\n?|\n/); };
1382
1383 var hasSelection = window.getSelection ? function (te) {
1384   try { return te.selectionStart != te.selectionEnd }
1385   catch(e) { return false }
1386 } : function (te) {
1387   var range$$1;
1388   try {range$$1 = te.ownerDocument.selection.createRange();}
1389   catch(e) {}
1390   if (!range$$1 || range$$1.parentElement() != te) { return false }
1391   return range$$1.compareEndPoints("StartToEnd", range$$1) != 0
1392 };
1393
1394 var hasCopyEvent = (function () {
1395   var e = elt("div");
1396   if ("oncopy" in e) { return true }
1397   e.setAttribute("oncopy", "return;");
1398   return typeof e.oncopy == "function"
1399 })();
1400
1401 var badZoomedRects = null;
1402 function hasBadZoomedRects(measure) {
1403   if (badZoomedRects != null) { return badZoomedRects }
1404   var node = removeChildrenAndAdd(measure, elt("span", "x"));
1405   var normal = node.getBoundingClientRect();
1406   var fromRange = range(node, 0, 1).getBoundingClientRect();
1407   return badZoomedRects = Math.abs(normal.left - fromRange.left) > 1
1408 }
1409
1410 // Known modes, by name and by MIME
1411 var modes = {};
1412 var mimeModes = {};
1413
1414 // Extra arguments are stored as the mode's dependencies, which is
1415 // used by (legacy) mechanisms like loadmode.js to automatically
1416 // load a mode. (Preferred mechanism is the require/define calls.)
1417 function defineMode(name, mode) {
1418   if (arguments.length > 2)
1419     { mode.dependencies = Array.prototype.slice.call(arguments, 2); }
1420   modes[name] = mode;
1421 }
1422
1423 function defineMIME(mime, spec) {
1424   mimeModes[mime] = spec;
1425 }
1426
1427 // Given a MIME type, a {name, ...options} config object, or a name
1428 // string, return a mode config object.
1429 function resolveMode(spec) {
1430   if (typeof spec == "string" && mimeModes.hasOwnProperty(spec)) {
1431     spec = mimeModes[spec];
1432   } else if (spec && typeof spec.name == "string" && mimeModes.hasOwnProperty(spec.name)) {
1433     var found = mimeModes[spec.name];
1434     if (typeof found == "string") { found = {name: found}; }
1435     spec = createObj(found, spec);
1436     spec.name = found.name;
1437   } else if (typeof spec == "string" && /^[\w\-]+\/[\w\-]+\+xml$/.test(spec)) {
1438     return resolveMode("application/xml")
1439   } else if (typeof spec == "string" && /^[\w\-]+\/[\w\-]+\+json$/.test(spec)) {
1440     return resolveMode("application/json")
1441   }
1442   if (typeof spec == "string") { return {name: spec} }
1443   else { return spec || {name: "null"} }
1444 }
1445
1446 // Given a mode spec (anything that resolveMode accepts), find and
1447 // initialize an actual mode object.
1448 function getMode(options, spec) {
1449   spec = resolveMode(spec);
1450   var mfactory = modes[spec.name];
1451   if (!mfactory) { return getMode(options, "text/plain") }
1452   var modeObj = mfactory(options, spec);
1453   if (modeExtensions.hasOwnProperty(spec.name)) {
1454     var exts = modeExtensions[spec.name];
1455     for (var prop in exts) {
1456       if (!exts.hasOwnProperty(prop)) { continue }
1457       if (modeObj.hasOwnProperty(prop)) { modeObj["_" + prop] = modeObj[prop]; }
1458       modeObj[prop] = exts[prop];
1459     }
1460   }
1461   modeObj.name = spec.name;
1462   if (spec.helperType) { modeObj.helperType = spec.helperType; }
1463   if (spec.modeProps) { for (var prop$1 in spec.modeProps)
1464     { modeObj[prop$1] = spec.modeProps[prop$1]; } }
1465
1466   return modeObj
1467 }
1468
1469 // This can be used to attach properties to mode objects from
1470 // outside the actual mode definition.
1471 var modeExtensions = {};
1472 function extendMode(mode, properties) {
1473   var exts = modeExtensions.hasOwnProperty(mode) ? modeExtensions[mode] : (modeExtensions[mode] = {});
1474   copyObj(properties, exts);
1475 }
1476
1477 function copyState(mode, state) {
1478   if (state === true) { return state }
1479   if (mode.copyState) { return mode.copyState(state) }
1480   var nstate = {};
1481   for (var n in state) {
1482     var val = state[n];
1483     if (val instanceof Array) { val = val.concat([]); }
1484     nstate[n] = val;
1485   }
1486   return nstate
1487 }
1488
1489 // Given a mode and a state (for that mode), find the inner mode and
1490 // state at the position that the state refers to.
1491 function innerMode(mode, state) {
1492   var info;
1493   while (mode.innerMode) {
1494     info = mode.innerMode(state);
1495     if (!info || info.mode == mode) { break }
1496     state = info.state;
1497     mode = info.mode;
1498   }
1499   return info || {mode: mode, state: state}
1500 }
1501
1502 function startState(mode, a1, a2) {
1503   return mode.startState ? mode.startState(a1, a2) : true
1504 }
1505
1506 // STRING STREAM
1507
1508 // Fed to the mode parsers, provides helper functions to make
1509 // parsers more succinct.
1510
1511 var StringStream = function(string, tabSize, lineOracle) {
1512   this.pos = this.start = 0;
1513   this.string = string;
1514   this.tabSize = tabSize || 8;
1515   this.lastColumnPos = this.lastColumnValue = 0;
1516   this.lineStart = 0;
1517   this.lineOracle = lineOracle;
1518 };
1519
1520 StringStream.prototype.eol = function () {return this.pos >= this.string.length};
1521 StringStream.prototype.sol = function () {return this.pos == this.lineStart};
1522 StringStream.prototype.peek = function () {return this.string.charAt(this.pos) || undefined};
1523 StringStream.prototype.next = function () {
1524   if (this.pos < this.string.length)
1525     { return this.string.charAt(this.pos++) }
1526 };
1527 StringStream.prototype.eat = function (match) {
1528   var ch = this.string.charAt(this.pos);
1529   var ok;
1530   if (typeof match == "string") { ok = ch == match; }
1531   else { ok = ch && (match.test ? match.test(ch) : match(ch)); }
1532   if (ok) {++this.pos; return ch}
1533 };
1534 StringStream.prototype.eatWhile = function (match) {
1535   var start = this.pos;
1536   while (this.eat(match)){}
1537   return this.pos > start
1538 };
1539 StringStream.prototype.eatSpace = function () {
1540     var this$1 = this;
1541
1542   var start = this.pos;
1543   while (/[\s\u00a0]/.test(this.string.charAt(this.pos))) { ++this$1.pos; }
1544   return this.pos > start
1545 };
1546 StringStream.prototype.skipToEnd = function () {this.pos = this.string.length;};
1547 StringStream.prototype.skipTo = function (ch) {
1548   var found = this.string.indexOf(ch, this.pos);
1549   if (found > -1) {this.pos = found; return true}
1550 };
1551 StringStream.prototype.backUp = function (n) {this.pos -= n;};
1552 StringStream.prototype.column = function () {
1553   if (this.lastColumnPos < this.start) {
1554     this.lastColumnValue = countColumn(this.string, this.start, this.tabSize, this.lastColumnPos, this.lastColumnValue);
1555     this.lastColumnPos = this.start;
1556   }
1557   return this.lastColumnValue - (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0)
1558 };
1559 StringStream.prototype.indentation = function () {
1560   return countColumn(this.string, null, this.tabSize) -
1561     (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0)
1562 };
1563 StringStream.prototype.match = function (pattern, consume, caseInsensitive) {
1564   if (typeof pattern == "string") {
1565     var cased = function (str) { return caseInsensitive ? str.toLowerCase() : str; };
1566     var substr = this.string.substr(this.pos, pattern.length);
1567     if (cased(substr) == cased(pattern)) {
1568       if (consume !== false) { this.pos += pattern.length; }
1569       return true
1570     }
1571   } else {
1572     var match = this.string.slice(this.pos).match(pattern);
1573     if (match && match.index > 0) { return null }
1574     if (match && consume !== false) { this.pos += match[0].length; }
1575     return match
1576   }
1577 };
1578 StringStream.prototype.current = function (){return this.string.slice(this.start, this.pos)};
1579 StringStream.prototype.hideFirstChars = function (n, inner) {
1580   this.lineStart += n;
1581   try { return inner() }
1582   finally { this.lineStart -= n; }
1583 };
1584 StringStream.prototype.lookAhead = function (n) {
1585   var oracle = this.lineOracle;
1586   return oracle && oracle.lookAhead(n)
1587 };
1588
1589 var SavedContext = function(state, lookAhead) {
1590   this.state = state;
1591   this.lookAhead = lookAhead;
1592 };
1593
1594 var Context = function(doc, state, line, lookAhead) {
1595   this.state = state;
1596   this.doc = doc;
1597   this.line = line;
1598   this.maxLookAhead = lookAhead || 0;
1599 };
1600
1601 Context.prototype.lookAhead = function (n) {
1602   var line = this.doc.getLine(this.line + n);
1603   if (line != null && n > this.maxLookAhead) { this.maxLookAhead = n; }
1604   return line
1605 };
1606
1607 Context.prototype.nextLine = function () {
1608   this.line++;
1609   if (this.maxLookAhead > 0) { this.maxLookAhead--; }
1610 };
1611
1612 Context.fromSaved = function (doc, saved, line) {
1613   if (saved instanceof SavedContext)
1614     { return new Context(doc, copyState(doc.mode, saved.state), line, saved.lookAhead) }
1615   else
1616     { return new Context(doc, copyState(doc.mode, saved), line) }
1617 };
1618
1619 Context.prototype.save = function (copy) {
1620   var state = copy !== false ? copyState(this.doc.mode, this.state) : this.state;
1621   return this.maxLookAhead > 0 ? new SavedContext(state, this.maxLookAhead) : state
1622 };
1623
1624
1625 // Compute a style array (an array starting with a mode generation
1626 // -- for invalidation -- followed by pairs of end positions and
1627 // style strings), which is used to highlight the tokens on the
1628 // line.
1629 function highlightLine(cm, line, context, forceToEnd) {
1630   // A styles array always starts with a number identifying the
1631   // mode/overlays that it is based on (for easy invalidation).
1632   var st = [cm.state.modeGen], lineClasses = {};
1633   // Compute the base array of styles
1634   runMode(cm, line.text, cm.doc.mode, context, function (end, style) { return st.push(end, style); },
1635           lineClasses, forceToEnd);
1636   var state = context.state;
1637
1638   // Run overlays, adjust style array.
1639   var loop = function ( o ) {
1640     var overlay = cm.state.overlays[o], i = 1, at = 0;
1641     context.state = true;
1642     runMode(cm, line.text, overlay.mode, context, function (end, style) {
1643       var start = i;
1644       // Ensure there's a token end at the current position, and that i points at it
1645       while (at < end) {
1646         var i_end = st[i];
1647         if (i_end > end)
1648           { st.splice(i, 1, end, st[i+1], i_end); }
1649         i += 2;
1650         at = Math.min(end, i_end);
1651       }
1652       if (!style) { return }
1653       if (overlay.opaque) {
1654         st.splice(start, i - start, end, "overlay " + style);
1655         i = start + 2;
1656       } else {
1657         for (; start < i; start += 2) {
1658           var cur = st[start+1];
1659           st[start+1] = (cur ? cur + " " : "") + "overlay " + style;
1660         }
1661       }
1662     }, lineClasses);
1663   };
1664
1665   for (var o = 0; o < cm.state.overlays.length; ++o) loop( o );
1666   context.state = state;
1667
1668   return {styles: st, classes: lineClasses.bgClass || lineClasses.textClass ? lineClasses : null}
1669 }
1670
1671 function getLineStyles(cm, line, updateFrontier) {
1672   if (!line.styles || line.styles[0] != cm.state.modeGen) {
1673     var context = getContextBefore(cm, lineNo(line));
1674     var resetState = line.text.length > cm.options.maxHighlightLength && copyState(cm.doc.mode, context.state);
1675     var result = highlightLine(cm, line, context);
1676     if (resetState) { context.state = resetState; }
1677     line.stateAfter = context.save(!resetState);
1678     line.styles = result.styles;
1679     if (result.classes) { line.styleClasses = result.classes; }
1680     else if (line.styleClasses) { line.styleClasses = null; }
1681     if (updateFrontier === cm.doc.highlightFrontier)
1682       { cm.doc.modeFrontier = Math.max(cm.doc.modeFrontier, ++cm.doc.highlightFrontier); }
1683   }
1684   return line.styles
1685 }
1686
1687 function getContextBefore(cm, n, precise) {
1688   var doc = cm.doc, display = cm.display;
1689   if (!doc.mode.startState) { return new Context(doc, true, n) }
1690   var start = findStartLine(cm, n, precise);
1691   var saved = start > doc.first && getLine(doc, start - 1).stateAfter;
1692   var context = saved ? Context.fromSaved(doc, saved, start) : new Context(doc, startState(doc.mode), start);
1693
1694   doc.iter(start, n, function (line) {
1695     processLine(cm, line.text, context);
1696     var pos = context.line;
1697     line.stateAfter = pos == n - 1 || pos % 5 == 0 || pos >= display.viewFrom && pos < display.viewTo ? context.save() : null;
1698     context.nextLine();
1699   });
1700   if (precise) { doc.modeFrontier = context.line; }
1701   return context
1702 }
1703
1704 // Lightweight form of highlight -- proceed over this line and
1705 // update state, but don't save a style array. Used for lines that
1706 // aren't currently visible.
1707 function processLine(cm, text, context, startAt) {
1708   var mode = cm.doc.mode;
1709   var stream = new StringStream(text, cm.options.tabSize, context);
1710   stream.start = stream.pos = startAt || 0;
1711   if (text == "") { callBlankLine(mode, context.state); }
1712   while (!stream.eol()) {
1713     readToken(mode, stream, context.state);
1714     stream.start = stream.pos;
1715   }
1716 }
1717
1718 function callBlankLine(mode, state) {
1719   if (mode.blankLine) { return mode.blankLine(state) }
1720   if (!mode.innerMode) { return }
1721   var inner = innerMode(mode, state);
1722   if (inner.mode.blankLine) { return inner.mode.blankLine(inner.state) }
1723 }
1724
1725 function readToken(mode, stream, state, inner) {
1726   for (var i = 0; i < 10; i++) {
1727     if (inner) { inner[0] = innerMode(mode, state).mode; }
1728     var style = mode.token(stream, state);
1729     if (stream.pos > stream.start) { return style }
1730   }
1731   throw new Error("Mode " + mode.name + " failed to advance stream.")
1732 }
1733
1734 var Token = function(stream, type, state) {
1735   this.start = stream.start; this.end = stream.pos;
1736   this.string = stream.current();
1737   this.type = type || null;
1738   this.state = state;
1739 };
1740
1741 // Utility for getTokenAt and getLineTokens
1742 function takeToken(cm, pos, precise, asArray) {
1743   var doc = cm.doc, mode = doc.mode, style;
1744   pos = clipPos(doc, pos);
1745   var line = getLine(doc, pos.line), context = getContextBefore(cm, pos.line, precise);
1746   var stream = new StringStream(line.text, cm.options.tabSize, context), tokens;
1747   if (asArray) { tokens = []; }
1748   while ((asArray || stream.pos < pos.ch) && !stream.eol()) {
1749     stream.start = stream.pos;
1750     style = readToken(mode, stream, context.state);
1751     if (asArray) { tokens.push(new Token(stream, style, copyState(doc.mode, context.state))); }
1752   }
1753   return asArray ? tokens : new Token(stream, style, context.state)
1754 }
1755
1756 function extractLineClasses(type, output) {
1757   if (type) { for (;;) {
1758     var lineClass = type.match(/(?:^|\s+)line-(background-)?(\S+)/);
1759     if (!lineClass) { break }
1760     type = type.slice(0, lineClass.index) + type.slice(lineClass.index + lineClass[0].length);
1761     var prop = lineClass[1] ? "bgClass" : "textClass";
1762     if (output[prop] == null)
1763       { output[prop] = lineClass[2]; }
1764     else if (!(new RegExp("(?:^|\s)" + lineClass[2] + "(?:$|\s)")).test(output[prop]))
1765       { output[prop] += " " + lineClass[2]; }
1766   } }
1767   return type
1768 }
1769
1770 // Run the given mode's parser over a line, calling f for each token.
1771 function runMode(cm, text, mode, context, f, lineClasses, forceToEnd) {
1772   var flattenSpans = mode.flattenSpans;
1773   if (flattenSpans == null) { flattenSpans = cm.options.flattenSpans; }
1774   var curStart = 0, curStyle = null;
1775   var stream = new StringStream(text, cm.options.tabSize, context), style;
1776   var inner = cm.options.addModeClass && [null];
1777   if (text == "") { extractLineClasses(callBlankLine(mode, context.state), lineClasses); }
1778   while (!stream.eol()) {
1779     if (stream.pos > cm.options.maxHighlightLength) {
1780       flattenSpans = false;
1781       if (forceToEnd) { processLine(cm, text, context, stream.pos); }
1782       stream.pos = text.length;
1783       style = null;
1784     } else {
1785       style = extractLineClasses(readToken(mode, stream, context.state, inner), lineClasses);
1786     }
1787     if (inner) {
1788       var mName = inner[0].name;
1789       if (mName) { style = "m-" + (style ? mName + " " + style : mName); }
1790     }
1791     if (!flattenSpans || curStyle != style) {
1792       while (curStart < stream.start) {
1793         curStart = Math.min(stream.start, curStart + 5000);
1794         f(curStart, curStyle);
1795       }
1796       curStyle = style;
1797     }
1798     stream.start = stream.pos;
1799   }
1800   while (curStart < stream.pos) {
1801     // Webkit seems to refuse to render text nodes longer than 57444
1802     // characters, and returns inaccurate measurements in nodes
1803     // starting around 5000 chars.
1804     var pos = Math.min(stream.pos, curStart + 5000);
1805     f(pos, curStyle);
1806     curStart = pos;
1807   }
1808 }
1809
1810 // Finds the line to start with when starting a parse. Tries to
1811 // find a line with a stateAfter, so that it can start with a
1812 // valid state. If that fails, it returns the line with the
1813 // smallest indentation, which tends to need the least context to
1814 // parse correctly.
1815 function findStartLine(cm, n, precise) {
1816   var minindent, minline, doc = cm.doc;
1817   var lim = precise ? -1 : n - (cm.doc.mode.innerMode ? 1000 : 100);
1818   for (var search = n; search > lim; --search) {
1819     if (search <= doc.first) { return doc.first }
1820     var line = getLine(doc, search - 1), after = line.stateAfter;
1821     if (after && (!precise || search + (after instanceof SavedContext ? after.lookAhead : 0) <= doc.modeFrontier))
1822       { return search }
1823     var indented = countColumn(line.text, null, cm.options.tabSize);
1824     if (minline == null || minindent > indented) {
1825       minline = search - 1;
1826       minindent = indented;
1827     }
1828   }
1829   return minline
1830 }
1831
1832 function retreatFrontier(doc, n) {
1833   doc.modeFrontier = Math.min(doc.modeFrontier, n);
1834   if (doc.highlightFrontier < n - 10) { return }
1835   var start = doc.first;
1836   for (var line = n - 1; line > start; line--) {
1837     var saved = getLine(doc, line).stateAfter;
1838     // change is on 3
1839     // state on line 1 looked ahead 2 -- so saw 3
1840     // test 1 + 2 < 3 should cover this
1841     if (saved && (!(saved instanceof SavedContext) || line + saved.lookAhead < n)) {
1842       start = line + 1;
1843       break
1844     }
1845   }
1846   doc.highlightFrontier = Math.min(doc.highlightFrontier, start);
1847 }
1848
1849 // LINE DATA STRUCTURE
1850
1851 // Line objects. These hold state related to a line, including
1852 // highlighting info (the styles array).
1853 var Line = function(text, markedSpans, estimateHeight) {
1854   this.text = text;
1855   attachMarkedSpans(this, markedSpans);
1856   this.height = estimateHeight ? estimateHeight(this) : 1;
1857 };
1858
1859 Line.prototype.lineNo = function () { return lineNo(this) };
1860 eventMixin(Line);
1861
1862 // Change the content (text, markers) of a line. Automatically
1863 // invalidates cached information and tries to re-estimate the
1864 // line's height.
1865 function updateLine(line, text, markedSpans, estimateHeight) {
1866   line.text = text;
1867   if (line.stateAfter) { line.stateAfter = null; }
1868   if (line.styles) { line.styles = null; }
1869   if (line.order != null) { line.order = null; }
1870   detachMarkedSpans(line);
1871   attachMarkedSpans(line, markedSpans);
1872   var estHeight = estimateHeight ? estimateHeight(line) : 1;
1873   if (estHeight != line.height) { updateLineHeight(line, estHeight); }
1874 }
1875
1876 // Detach a line from the document tree and its markers.
1877 function cleanUpLine(line) {
1878   line.parent = null;
1879   detachMarkedSpans(line);
1880 }
1881
1882 // Convert a style as returned by a mode (either null, or a string
1883 // containing one or more styles) to a CSS style. This is cached,
1884 // and also looks for line-wide styles.
1885 var styleToClassCache = {};
1886 var styleToClassCacheWithMode = {};
1887 function interpretTokenStyle(style, options) {
1888   if (!style || /^\s*$/.test(style)) { return null }
1889   var cache = options.addModeClass ? styleToClassCacheWithMode : styleToClassCache;
1890   return cache[style] ||
1891     (cache[style] = style.replace(/\S+/g, "cm-$&"))
1892 }
1893
1894 // Render the DOM representation of the text of a line. Also builds
1895 // up a 'line map', which points at the DOM nodes that represent
1896 // specific stretches of text, and is used by the measuring code.
1897 // The returned object contains the DOM node, this map, and
1898 // information about line-wide styles that were set by the mode.
1899 function buildLineContent(cm, lineView) {
1900   // The padding-right forces the element to have a 'border', which
1901   // is needed on Webkit to be able to get line-level bounding
1902   // rectangles for it (in measureChar).
1903   var content = eltP("span", null, null, webkit ? "padding-right: .1px" : null);
1904   var builder = {pre: eltP("pre", [content], "CodeMirror-line"), content: content,
1905                  col: 0, pos: 0, cm: cm,
1906                  trailingSpace: false,
1907                  splitSpaces: (ie || webkit) && cm.getOption("lineWrapping")};
1908   lineView.measure = {};
1909
1910   // Iterate over the logical lines that make up this visual line.
1911   for (var i = 0; i <= (lineView.rest ? lineView.rest.length : 0); i++) {
1912     var line = i ? lineView.rest[i - 1] : lineView.line, order = (void 0);
1913     builder.pos = 0;
1914     builder.addToken = buildToken;
1915     // Optionally wire in some hacks into the token-rendering
1916     // algorithm, to deal with browser quirks.
1917     if (hasBadBidiRects(cm.display.measure) && (order = getOrder(line, cm.doc.direction)))
1918       { builder.addToken = buildTokenBadBidi(builder.addToken, order); }
1919     builder.map = [];
1920     var allowFrontierUpdate = lineView != cm.display.externalMeasured && lineNo(line);
1921     insertLineContent(line, builder, getLineStyles(cm, line, allowFrontierUpdate));
1922     if (line.styleClasses) {
1923       if (line.styleClasses.bgClass)
1924         { builder.bgClass = joinClasses(line.styleClasses.bgClass, builder.bgClass || ""); }
1925       if (line.styleClasses.textClass)
1926         { builder.textClass = joinClasses(line.styleClasses.textClass, builder.textClass || ""); }
1927     }
1928
1929     // Ensure at least a single node is present, for measuring.
1930     if (builder.map.length == 0)
1931       { builder.map.push(0, 0, builder.content.appendChild(zeroWidthElement(cm.display.measure))); }
1932
1933     // Store the map and a cache object for the current logical line
1934     if (i == 0) {
1935       lineView.measure.map = builder.map;
1936       lineView.measure.cache = {};
1937     } else {
1938       (lineView.measure.maps || (lineView.measure.maps = [])).push(builder.map)
1939       ;(lineView.measure.caches || (lineView.measure.caches = [])).push({});
1940     }
1941   }
1942
1943   // See issue #2901
1944   if (webkit) {
1945     var last = builder.content.lastChild;
1946     if (/\bcm-tab\b/.test(last.className) || (last.querySelector && last.querySelector(".cm-tab")))
1947       { builder.content.className = "cm-tab-wrap-hack"; }
1948   }
1949
1950   signal(cm, "renderLine", cm, lineView.line, builder.pre);
1951   if (builder.pre.className)
1952     { builder.textClass = joinClasses(builder.pre.className, builder.textClass || ""); }
1953
1954   return builder
1955 }
1956
1957 function defaultSpecialCharPlaceholder(ch) {
1958   var token = elt("span", "\u2022", "cm-invalidchar");
1959   token.title = "\\u" + ch.charCodeAt(0).toString(16);
1960   token.setAttribute("aria-label", token.title);
1961   return token
1962 }
1963
1964 // Build up the DOM representation for a single token, and add it to
1965 // the line map. Takes care to render special characters separately.
1966 function buildToken(builder, text, style, startStyle, endStyle, title, css) {
1967   if (!text) { return }
1968   var displayText = builder.splitSpaces ? splitSpaces(text, builder.trailingSpace) : text;
1969   var special = builder.cm.state.specialChars, mustWrap = false;
1970   var content;
1971   if (!special.test(text)) {
1972     builder.col += text.length;
1973     content = document.createTextNode(displayText);
1974     builder.map.push(builder.pos, builder.pos + text.length, content);
1975     if (ie && ie_version < 9) { mustWrap = true; }
1976     builder.pos += text.length;
1977   } else {
1978     content = document.createDocumentFragment();
1979     var pos = 0;
1980     while (true) {
1981       special.lastIndex = pos;
1982       var m = special.exec(text);
1983       var skipped = m ? m.index - pos : text.length - pos;
1984       if (skipped) {
1985         var txt = document.createTextNode(displayText.slice(pos, pos + skipped));
1986         if (ie && ie_version < 9) { content.appendChild(elt("span", [txt])); }
1987         else { content.appendChild(txt); }
1988         builder.map.push(builder.pos, builder.pos + skipped, txt);
1989         builder.col += skipped;
1990         builder.pos += skipped;
1991       }
1992       if (!m) { break }
1993       pos += skipped + 1;
1994       var txt$1 = (void 0);
1995       if (m[0] == "\t") {
1996         var tabSize = builder.cm.options.tabSize, tabWidth = tabSize - builder.col % tabSize;
1997         txt$1 = content.appendChild(elt("span", spaceStr(tabWidth), "cm-tab"));
1998         txt$1.setAttribute("role", "presentation");
1999         txt$1.setAttribute("cm-text", "\t");
2000         builder.col += tabWidth;
2001       } else if (m[0] == "\r" || m[0] == "\n") {
2002         txt$1 = content.appendChild(elt("span", m[0] == "\r" ? "\u240d" : "\u2424", "cm-invalidchar"));
2003         txt$1.setAttribute("cm-text", m[0]);
2004         builder.col += 1;
2005       } else {
2006         txt$1 = builder.cm.options.specialCharPlaceholder(m[0]);
2007         txt$1.setAttribute("cm-text", m[0]);
2008         if (ie && ie_version < 9) { content.appendChild(elt("span", [txt$1])); }
2009         else { content.appendChild(txt$1); }
2010         builder.col += 1;
2011       }
2012       builder.map.push(builder.pos, builder.pos + 1, txt$1);
2013       builder.pos++;
2014     }
2015   }
2016   builder.trailingSpace = displayText.charCodeAt(text.length - 1) == 32;
2017   if (style || startStyle || endStyle || mustWrap || css) {
2018     var fullStyle = style || "";
2019     if (startStyle) { fullStyle += startStyle; }
2020     if (endStyle) { fullStyle += endStyle; }
2021     var token = elt("span", [content], fullStyle, css);
2022     if (title) { token.title = title; }
2023     return builder.content.appendChild(token)
2024   }
2025   builder.content.appendChild(content);
2026 }
2027
2028 function splitSpaces(text, trailingBefore) {
2029   if (text.length > 1 && !/  /.test(text)) { return text }
2030   var spaceBefore = trailingBefore, result = "";
2031   for (var i = 0; i < text.length; i++) {
2032     var ch = text.charAt(i);
2033     if (ch == " " && spaceBefore && (i == text.length - 1 || text.charCodeAt(i + 1) == 32))
2034       { ch = "\u00a0"; }
2035     result += ch;
2036     spaceBefore = ch == " ";
2037   }
2038   return result
2039 }
2040
2041 // Work around nonsense dimensions being reported for stretches of
2042 // right-to-left text.
2043 function buildTokenBadBidi(inner, order) {
2044   return function (builder, text, style, startStyle, endStyle, title, css) {
2045     style = style ? style + " cm-force-border" : "cm-force-border";
2046     var start = builder.pos, end = start + text.length;
2047     for (;;) {
2048       // Find the part that overlaps with the start of this text
2049       var part = (void 0);
2050       for (var i = 0; i < order.length; i++) {
2051         part = order[i];
2052         if (part.to > start && part.from <= start) { break }
2053       }
2054       if (part.to >= end) { return inner(builder, text, style, startStyle, endStyle, title, css) }
2055       inner(builder, text.slice(0, part.to - start), style, startStyle, null, title, css);
2056       startStyle = null;
2057       text = text.slice(part.to - start);
2058       start = part.to;
2059     }
2060   }
2061 }
2062
2063 function buildCollapsedSpan(builder, size, marker, ignoreWidget) {
2064   var widget = !ignoreWidget && marker.widgetNode;
2065   if (widget) { builder.map.push(builder.pos, builder.pos + size, widget); }
2066   if (!ignoreWidget && builder.cm.display.input.needsContentAttribute) {
2067     if (!widget)
2068       { widget = builder.content.appendChild(document.createElement("span")); }
2069     widget.setAttribute("cm-marker", marker.id);
2070   }
2071   if (widget) {
2072     builder.cm.display.input.setUneditable(widget);
2073     builder.content.appendChild(widget);
2074   }
2075   builder.pos += size;
2076   builder.trailingSpace = false;
2077 }
2078
2079 // Outputs a number of spans to make up a line, taking highlighting
2080 // and marked text into account.
2081 function insertLineContent(line, builder, styles) {
2082   var spans = line.markedSpans, allText = line.text, at = 0;
2083   if (!spans) {
2084     for (var i$1 = 1; i$1 < styles.length; i$1+=2)
2085       { builder.addToken(builder, allText.slice(at, at = styles[i$1]), interpretTokenStyle(styles[i$1+1], builder.cm.options)); }
2086     return
2087   }
2088
2089   var len = allText.length, pos = 0, i = 1, text = "", style, css;
2090   var nextChange = 0, spanStyle, spanEndStyle, spanStartStyle, title, collapsed;
2091   for (;;) {
2092     if (nextChange == pos) { // Update current marker set
2093       spanStyle = spanEndStyle = spanStartStyle = title = css = "";
2094       collapsed = null; nextChange = Infinity;
2095       var foundBookmarks = [], endStyles = (void 0);
2096       for (var j = 0; j < spans.length; ++j) {
2097         var sp = spans[j], m = sp.marker;
2098         if (m.type == "bookmark" && sp.from == pos && m.widgetNode) {
2099           foundBookmarks.push(m);
2100         } else if (sp.from <= pos && (sp.to == null || sp.to > pos || m.collapsed && sp.to == pos && sp.from == pos)) {
2101           if (sp.to != null && sp.to != pos && nextChange > sp.to) {
2102             nextChange = sp.to;
2103             spanEndStyle = "";
2104           }
2105           if (m.className) { spanStyle += " " + m.className; }
2106           if (m.css) { css = (css ? css + ";" : "") + m.css; }
2107           if (m.startStyle && sp.from == pos) { spanStartStyle += " " + m.startStyle; }
2108           if (m.endStyle && sp.to == nextChange) { (endStyles || (endStyles = [])).push(m.endStyle, sp.to); }
2109           if (m.title && !title) { title = m.title; }
2110           if (m.collapsed && (!collapsed || compareCollapsedMarkers(collapsed.marker, m) < 0))
2111             { collapsed = sp; }
2112         } else if (sp.from > pos && nextChange > sp.from) {
2113           nextChange = sp.from;
2114         }
2115       }
2116       if (endStyles) { for (var j$1 = 0; j$1 < endStyles.length; j$1 += 2)
2117         { if (endStyles[j$1 + 1] == nextChange) { spanEndStyle += " " + endStyles[j$1]; } } }
2118
2119       if (!collapsed || collapsed.from == pos) { for (var j$2 = 0; j$2 < foundBookmarks.length; ++j$2)
2120         { buildCollapsedSpan(builder, 0, foundBookmarks[j$2]); } }
2121       if (collapsed && (collapsed.from || 0) == pos) {
2122         buildCollapsedSpan(builder, (collapsed.to == null ? len + 1 : collapsed.to) - pos,
2123                            collapsed.marker, collapsed.from == null);
2124         if (collapsed.to == null) { return }
2125         if (collapsed.to == pos) { collapsed = false; }
2126       }
2127     }
2128     if (pos >= len) { break }
2129
2130     var upto = Math.min(len, nextChange);
2131     while (true) {
2132       if (text) {
2133         var end = pos + text.length;
2134         if (!collapsed) {
2135           var tokenText = end > upto ? text.slice(0, upto - pos) : text;
2136           builder.addToken(builder, tokenText, style ? style + spanStyle : spanStyle,
2137                            spanStartStyle, pos + tokenText.length == nextChange ? spanEndStyle : "", title, css);
2138         }
2139         if (end >= upto) {text = text.slice(upto - pos); pos = upto; break}
2140         pos = end;
2141         spanStartStyle = "";
2142       }
2143       text = allText.slice(at, at = styles[i++]);
2144       style = interpretTokenStyle(styles[i++], builder.cm.options);
2145     }
2146   }
2147 }
2148
2149
2150 // These objects are used to represent the visible (currently drawn)
2151 // part of the document. A LineView may correspond to multiple
2152 // logical lines, if those are connected by collapsed ranges.
2153 function LineView(doc, line, lineN) {
2154   // The starting line
2155   this.line = line;
2156   // Continuing lines, if any
2157   this.rest = visualLineContinued(line);
2158   // Number of logical lines in this visual line
2159   this.size = this.rest ? lineNo(lst(this.rest)) - lineN + 1 : 1;
2160   this.node = this.text = null;
2161   this.hidden = lineIsHidden(doc, line);
2162 }
2163
2164 // Create a range of LineView objects for the given lines.
2165 function buildViewArray(cm, from, to) {
2166   var array = [], nextPos;
2167   for (var pos = from; pos < to; pos = nextPos) {
2168     var view = new LineView(cm.doc, getLine(cm.doc, pos), pos);
2169     nextPos = pos + view.size;
2170     array.push(view);
2171   }
2172   return array
2173 }
2174
2175 var operationGroup = null;
2176
2177 function pushOperation(op) {
2178   if (operationGroup) {
2179     operationGroup.ops.push(op);
2180   } else {
2181     op.ownsGroup = operationGroup = {
2182       ops: [op],
2183       delayedCallbacks: []
2184     };
2185   }
2186 }
2187
2188 function fireCallbacksForOps(group) {
2189   // Calls delayed callbacks and cursorActivity handlers until no
2190   // new ones appear
2191   var callbacks = group.delayedCallbacks, i = 0;
2192   do {
2193     for (; i < callbacks.length; i++)
2194       { callbacks[i].call(null); }
2195     for (var j = 0; j < group.ops.length; j++) {
2196       var op = group.ops[j];
2197       if (op.cursorActivityHandlers)
2198         { while (op.cursorActivityCalled < op.cursorActivityHandlers.length)
2199           { op.cursorActivityHandlers[op.cursorActivityCalled++].call(null, op.cm); } }
2200     }
2201   } while (i < callbacks.length)
2202 }
2203
2204 function finishOperation(op, endCb) {
2205   var group = op.ownsGroup;
2206   if (!group) { return }
2207
2208   try { fireCallbacksForOps(group); }
2209   finally {
2210     operationGroup = null;
2211     endCb(group);
2212   }
2213 }
2214
2215 var orphanDelayedCallbacks = null;
2216
2217 // Often, we want to signal events at a point where we are in the
2218 // middle of some work, but don't want the handler to start calling
2219 // other methods on the editor, which might be in an inconsistent
2220 // state or simply not expect any other events to happen.
2221 // signalLater looks whether there are any handlers, and schedules
2222 // them to be executed when the last operation ends, or, if no
2223 // operation is active, when a timeout fires.
2224 function signalLater(emitter, type /*, values...*/) {
2225   var arr = getHandlers(emitter, type);
2226   if (!arr.length) { return }
2227   var args = Array.prototype.slice.call(arguments, 2), list;
2228   if (operationGroup) {
2229     list = operationGroup.delayedCallbacks;
2230   } else if (orphanDelayedCallbacks) {
2231     list = orphanDelayedCallbacks;
2232   } else {
2233     list = orphanDelayedCallbacks = [];
2234     setTimeout(fireOrphanDelayed, 0);
2235   }
2236   var loop = function ( i ) {
2237     list.push(function () { return arr[i].apply(null, args); });
2238   };
2239
2240   for (var i = 0; i < arr.length; ++i)
2241     loop( i );
2242 }
2243
2244 function fireOrphanDelayed() {
2245   var delayed = orphanDelayedCallbacks;
2246   orphanDelayedCallbacks = null;
2247   for (var i = 0; i < delayed.length; ++i) { delayed[i](); }
2248 }
2249
2250 // When an aspect of a line changes, a string is added to
2251 // lineView.changes. This updates the relevant part of the line's
2252 // DOM structure.
2253 function updateLineForChanges(cm, lineView, lineN, dims) {
2254   for (var j = 0; j < lineView.changes.length; j++) {
2255     var type = lineView.changes[j];
2256     if (type == "text") { updateLineText(cm, lineView); }
2257     else if (type == "gutter") { updateLineGutter(cm, lineView, lineN, dims); }
2258     else if (type == "class") { updateLineClasses(cm, lineView); }
2259     else if (type == "widget") { updateLineWidgets(cm, lineView, dims); }
2260   }
2261   lineView.changes = null;
2262 }
2263
2264 // Lines with gutter elements, widgets or a background class need to
2265 // be wrapped, and have the extra elements added to the wrapper div
2266 function ensureLineWrapped(lineView) {
2267   if (lineView.node == lineView.text) {
2268     lineView.node = elt("div", null, null, "position: relative");
2269     if (lineView.text.parentNode)
2270       { lineView.text.parentNode.replaceChild(lineView.node, lineView.text); }
2271     lineView.node.appendChild(lineView.text);
2272     if (ie && ie_version < 8) { lineView.node.style.zIndex = 2; }
2273   }
2274   return lineView.node
2275 }
2276
2277 function updateLineBackground(cm, lineView) {
2278   var cls = lineView.bgClass ? lineView.bgClass + " " + (lineView.line.bgClass || "") : lineView.line.bgClass;
2279   if (cls) { cls += " CodeMirror-linebackground"; }
2280   if (lineView.background) {
2281     if (cls) { lineView.background.className = cls; }
2282     else { lineView.background.parentNode.removeChild(lineView.background); lineView.background = null; }
2283   } else if (cls) {
2284     var wrap = ensureLineWrapped(lineView);
2285     lineView.background = wrap.insertBefore(elt("div", null, cls), wrap.firstChild);
2286     cm.display.input.setUneditable(lineView.background);
2287   }
2288 }
2289
2290 // Wrapper around buildLineContent which will reuse the structure
2291 // in display.externalMeasured when possible.
2292 function getLineContent(cm, lineView) {
2293   var ext = cm.display.externalMeasured;
2294   if (ext && ext.line == lineView.line) {
2295     cm.display.externalMeasured = null;
2296     lineView.measure = ext.measure;
2297     return ext.built
2298   }
2299   return buildLineContent(cm, lineView)
2300 }
2301
2302 // Redraw the line's text. Interacts with the background and text
2303 // classes because the mode may output tokens that influence these
2304 // classes.
2305 function updateLineText(cm, lineView) {
2306   var cls = lineView.text.className;
2307   var built = getLineContent(cm, lineView);
2308   if (lineView.text == lineView.node) { lineView.node = built.pre; }
2309   lineView.text.parentNode.replaceChild(built.pre, lineView.text);
2310   lineView.text = built.pre;
2311   if (built.bgClass != lineView.bgClass || built.textClass != lineView.textClass) {
2312     lineView.bgClass = built.bgClass;
2313     lineView.textClass = built.textClass;
2314     updateLineClasses(cm, lineView);
2315   } else if (cls) {
2316     lineView.text.className = cls;
2317   }
2318 }
2319
2320 function updateLineClasses(cm, lineView) {
2321   updateLineBackground(cm, lineView);
2322   if (lineView.line.wrapClass)
2323     { ensureLineWrapped(lineView).className = lineView.line.wrapClass; }
2324   else if (lineView.node != lineView.text)
2325     { lineView.node.className = ""; }
2326   var textClass = lineView.textClass ? lineView.textClass + " " + (lineView.line.textClass || "") : lineView.line.textClass;
2327   lineView.text.className = textClass || "";
2328 }
2329
2330 function updateLineGutter(cm, lineView, lineN, dims) {
2331   if (lineView.gutter) {
2332     lineView.node.removeChild(lineView.gutter);
2333     lineView.gutter = null;
2334   }
2335   if (lineView.gutterBackground) {
2336     lineView.node.removeChild(lineView.gutterBackground);
2337     lineView.gutterBackground = null;
2338   }
2339   if (lineView.line.gutterClass) {
2340     var wrap = ensureLineWrapped(lineView);
2341     lineView.gutterBackground = elt("div", null, "CodeMirror-gutter-background " + lineView.line.gutterClass,
2342                                     ("left: " + (cm.options.fixedGutter ? dims.fixedPos : -dims.gutterTotalWidth) + "px; width: " + (dims.gutterTotalWidth) + "px"));
2343     cm.display.input.setUneditable(lineView.gutterBackground);
2344     wrap.insertBefore(lineView.gutterBackground, lineView.text);
2345   }
2346   var markers = lineView.line.gutterMarkers;
2347   if (cm.options.lineNumbers || markers) {
2348     var wrap$1 = ensureLineWrapped(lineView);
2349     var gutterWrap = lineView.gutter = elt("div", null, "CodeMirror-gutter-wrapper", ("left: " + (cm.options.fixedGutter ? dims.fixedPos : -dims.gutterTotalWidth) + "px"));
2350     cm.display.input.setUneditable(gutterWrap);
2351     wrap$1.insertBefore(gutterWrap, lineView.text);
2352     if (lineView.line.gutterClass)
2353       { gutterWrap.className += " " + lineView.line.gutterClass; }
2354     if (cm.options.lineNumbers && (!markers || !markers["CodeMirror-linenumbers"]))
2355       { lineView.lineNumber = gutterWrap.appendChild(
2356         elt("div", lineNumberFor(cm.options, lineN),
2357             "CodeMirror-linenumber CodeMirror-gutter-elt",
2358             ("left: " + (dims.gutterLeft["CodeMirror-linenumbers"]) + "px; width: " + (cm.display.lineNumInnerWidth) + "px"))); }
2359     if (markers) { for (var k = 0; k < cm.options.gutters.length; ++k) {
2360       var id = cm.options.gutters[k], found = markers.hasOwnProperty(id) && markers[id];
2361       if (found)
2362         { gutterWrap.appendChild(elt("div", [found], "CodeMirror-gutter-elt",
2363                                    ("left: " + (dims.gutterLeft[id]) + "px; width: " + (dims.gutterWidth[id]) + "px"))); }
2364     } }
2365   }
2366 }
2367
2368 function updateLineWidgets(cm, lineView, dims) {
2369   if (lineView.alignable) { lineView.alignable = null; }
2370   for (var node = lineView.node.firstChild, next = (void 0); node; node = next) {
2371     next = node.nextSibling;
2372     if (node.className == "CodeMirror-linewidget")
2373       { lineView.node.removeChild(node); }
2374   }
2375   insertLineWidgets(cm, lineView, dims);
2376 }
2377
2378 // Build a line's DOM representation from scratch
2379 function buildLineElement(cm, lineView, lineN, dims) {
2380   var built = getLineContent(cm, lineView);
2381   lineView.text = lineView.node = built.pre;
2382   if (built.bgClass) { lineView.bgClass = built.bgClass; }
2383   if (built.textClass) { lineView.textClass = built.textClass; }
2384
2385   updateLineClasses(cm, lineView);
2386   updateLineGutter(cm, lineView, lineN, dims);
2387   insertLineWidgets(cm, lineView, dims);
2388   return lineView.node
2389 }
2390
2391 // A lineView may contain multiple logical lines (when merged by
2392 // collapsed spans). The widgets for all of them need to be drawn.
2393 function insertLineWidgets(cm, lineView, dims) {
2394   insertLineWidgetsFor(cm, lineView.line, lineView, dims, true);
2395   if (lineView.rest) { for (var i = 0; i < lineView.rest.length; i++)
2396     { insertLineWidgetsFor(cm, lineView.rest[i], lineView, dims, false); } }
2397 }
2398
2399 function insertLineWidgetsFor(cm, line, lineView, dims, allowAbove) {
2400   if (!line.widgets) { return }
2401   var wrap = ensureLineWrapped(lineView);
2402   for (var i = 0, ws = line.widgets; i < ws.length; ++i) {
2403     var widget = ws[i], node = elt("div", [widget.node], "CodeMirror-linewidget");
2404     if (!widget.handleMouseEvents) { node.setAttribute("cm-ignore-events", "true"); }
2405     positionLineWidget(widget, node, lineView, dims);
2406     cm.display.input.setUneditable(node);
2407     if (allowAbove && widget.above)
2408       { wrap.insertBefore(node, lineView.gutter || lineView.text); }
2409     else
2410       { wrap.appendChild(node); }
2411     signalLater(widget, "redraw");
2412   }
2413 }
2414
2415 function positionLineWidget(widget, node, lineView, dims) {
2416   if (widget.noHScroll) {
2417     (lineView.alignable || (lineView.alignable = [])).push(node);
2418     var width = dims.wrapperWidth;
2419     node.style.left = dims.fixedPos + "px";
2420     if (!widget.coverGutter) {
2421       width -= dims.gutterTotalWidth;
2422       node.style.paddingLeft = dims.gutterTotalWidth + "px";
2423     }
2424     node.style.width = width + "px";
2425   }
2426   if (widget.coverGutter) {
2427     node.style.zIndex = 5;
2428     node.style.position = "relative";
2429     if (!widget.noHScroll) { node.style.marginLeft = -dims.gutterTotalWidth + "px"; }
2430   }
2431 }
2432
2433 function widgetHeight(widget) {
2434   if (widget.height != null) { return widget.height }
2435   var cm = widget.doc.cm;
2436   if (!cm) { return 0 }
2437   if (!contains(document.body, widget.node)) {
2438     var parentStyle = "position: relative;";
2439     if (widget.coverGutter)
2440       { parentStyle += "margin-left: -" + cm.display.gutters.offsetWidth + "px;"; }
2441     if (widget.noHScroll)
2442       { parentStyle += "width: " + cm.display.wrapper.clientWidth + "px;"; }
2443     removeChildrenAndAdd(cm.display.measure, elt("div", [widget.node], null, parentStyle));
2444   }
2445   return widget.height = widget.node.parentNode.offsetHeight
2446 }
2447
2448 // Return true when the given mouse event happened in a widget
2449 function eventInWidget(display, e) {
2450   for (var n = e_target(e); n != display.wrapper; n = n.parentNode) {
2451     if (!n || (n.nodeType == 1 && n.getAttribute("cm-ignore-events") == "true") ||
2452         (n.parentNode == display.sizer && n != display.mover))
2453       { return true }
2454   }
2455 }
2456
2457 // POSITION MEASUREMENT
2458
2459 function paddingTop(display) {return display.lineSpace.offsetTop}
2460 function paddingVert(display) {return display.mover.offsetHeight - display.lineSpace.offsetHeight}
2461 function paddingH(display) {
2462   if (display.cachedPaddingH) { return display.cachedPaddingH }
2463   var e = removeChildrenAndAdd(display.measure, elt("pre", "x"));
2464   var style = window.getComputedStyle ? window.getComputedStyle(e) : e.currentStyle;
2465   var data = {left: parseInt(style.paddingLeft), right: parseInt(style.paddingRight)};
2466   if (!isNaN(data.left) && !isNaN(data.right)) { display.cachedPaddingH = data; }
2467   return data
2468 }
2469
2470 function scrollGap(cm) { return scrollerGap - cm.display.nativeBarWidth }
2471 function displayWidth(cm) {
2472   return cm.display.scroller.clientWidth - scrollGap(cm) - cm.display.barWidth
2473 }
2474 function displayHeight(cm) {
2475   return cm.display.scroller.clientHeight - scrollGap(cm) - cm.display.barHeight
2476 }
2477
2478 // Ensure the lineView.wrapping.heights array is populated. This is
2479 // an array of bottom offsets for the lines that make up a drawn
2480 // line. When lineWrapping is on, there might be more than one
2481 // height.
2482 function ensureLineHeights(cm, lineView, rect) {
2483   var wrapping = cm.options.lineWrapping;
2484   var curWidth = wrapping && displayWidth(cm);
2485   if (!lineView.measure.heights || wrapping && lineView.measure.width != curWidth) {
2486     var heights = lineView.measure.heights = [];
2487     if (wrapping) {
2488       lineView.measure.width = curWidth;
2489       var rects = lineView.text.firstChild.getClientRects();
2490       for (var i = 0; i < rects.length - 1; i++) {
2491         var cur = rects[i], next = rects[i + 1];
2492         if (Math.abs(cur.bottom - next.bottom) > 2)
2493           { heights.push((cur.bottom + next.top) / 2 - rect.top); }
2494       }
2495     }
2496     heights.push(rect.bottom - rect.top);
2497   }
2498 }
2499
2500 // Find a line map (mapping character offsets to text nodes) and a
2501 // measurement cache for the given line number. (A line view might
2502 // contain multiple lines when collapsed ranges are present.)
2503 function mapFromLineView(lineView, line, lineN) {
2504   if (lineView.line == line)
2505     { return {map: lineView.measure.map, cache: lineView.measure.cache} }
2506   for (var i = 0; i < lineView.rest.length; i++)
2507     { if (lineView.rest[i] == line)
2508       { return {map: lineView.measure.maps[i], cache: lineView.measure.caches[i]} } }
2509   for (var i$1 = 0; i$1 < lineView.rest.length; i$1++)
2510     { if (lineNo(lineView.rest[i$1]) > lineN)
2511       { return {map: lineView.measure.maps[i$1], cache: lineView.measure.caches[i$1], before: true} } }
2512 }
2513
2514 // Render a line into the hidden node display.externalMeasured. Used
2515 // when measurement is needed for a line that's not in the viewport.
2516 function updateExternalMeasurement(cm, line) {
2517   line = visualLine(line);
2518   var lineN = lineNo(line);
2519   var view = cm.display.externalMeasured = new LineView(cm.doc, line, lineN);
2520   view.lineN = lineN;
2521   var built = view.built = buildLineContent(cm, view);
2522   view.text = built.pre;
2523   removeChildrenAndAdd(cm.display.lineMeasure, built.pre);
2524   return view
2525 }
2526
2527 // Get a {top, bottom, left, right} box (in line-local coordinates)
2528 // for a given character.
2529 function measureChar(cm, line, ch, bias) {
2530   return measureCharPrepared(cm, prepareMeasureForLine(cm, line), ch, bias)
2531 }
2532
2533 // Find a line view that corresponds to the given line number.
2534 function findViewForLine(cm, lineN) {
2535   if (lineN >= cm.display.viewFrom && lineN < cm.display.viewTo)
2536     { return cm.display.view[findViewIndex(cm, lineN)] }
2537   var ext = cm.display.externalMeasured;
2538   if (ext && lineN >= ext.lineN && lineN < ext.lineN + ext.size)
2539     { return ext }
2540 }
2541
2542 // Measurement can be split in two steps, the set-up work that
2543 // applies to the whole line, and the measurement of the actual
2544 // character. Functions like coordsChar, that need to do a lot of
2545 // measurements in a row, can thus ensure that the set-up work is
2546 // only done once.
2547 function prepareMeasureForLine(cm, line) {
2548   var lineN = lineNo(line);
2549   var view = findViewForLine(cm, lineN);
2550   if (view && !view.text) {
2551     view = null;
2552   } else if (view && view.changes) {
2553     updateLineForChanges(cm, view, lineN, getDimensions(cm));
2554     cm.curOp.forceUpdate = true;
2555   }
2556   if (!view)
2557     { view = updateExternalMeasurement(cm, line); }
2558
2559   var info = mapFromLineView(view, line, lineN);
2560   return {
2561     line: line, view: view, rect: null,
2562     map: info.map, cache: info.cache, before: info.before,
2563     hasHeights: false
2564   }
2565 }
2566
2567 // Given a prepared measurement object, measures the position of an
2568 // actual character (or fetches it from the cache).
2569 function measureCharPrepared(cm, prepared, ch, bias, varHeight) {
2570   if (prepared.before) { ch = -1; }
2571   var key = ch + (bias || ""), found;
2572   if (prepared.cache.hasOwnProperty(key)) {
2573     found = prepared.cache[key];
2574   } else {
2575     if (!prepared.rect)
2576       { prepared.rect = prepared.view.text.getBoundingClientRect(); }
2577     if (!prepared.hasHeights) {
2578       ensureLineHeights(cm, prepared.view, prepared.rect);
2579       prepared.hasHeights = true;
2580     }
2581     found = measureCharInner(cm, prepared, ch, bias);
2582     if (!found.bogus) { prepared.cache[key] = found; }
2583   }
2584   return {left: found.left, right: found.right,
2585           top: varHeight ? found.rtop : found.top,
2586           bottom: varHeight ? found.rbottom : found.bottom}
2587 }
2588
2589 var nullRect = {left: 0, right: 0, top: 0, bottom: 0};
2590
2591 function nodeAndOffsetInLineMap(map$$1, ch, bias) {
2592   var node, start, end, collapse, mStart, mEnd;
2593   // First, search the line map for the text node corresponding to,
2594   // or closest to, the target character.
2595   for (var i = 0; i < map$$1.length; i += 3) {
2596     mStart = map$$1[i];
2597     mEnd = map$$1[i + 1];
2598     if (ch < mStart) {
2599       start = 0; end = 1;
2600       collapse = "left";
2601     } else if (ch < mEnd) {
2602       start = ch - mStart;
2603       end = start + 1;
2604     } else if (i == map$$1.length - 3 || ch == mEnd && map$$1[i + 3] > ch) {
2605       end = mEnd - mStart;
2606       start = end - 1;
2607       if (ch >= mEnd) { collapse = "right"; }
2608     }
2609     if (start != null) {
2610       node = map$$1[i + 2];
2611       if (mStart == mEnd && bias == (node.insertLeft ? "left" : "right"))
2612         { collapse = bias; }
2613       if (bias == "left" && start == 0)
2614         { while (i && map$$1[i - 2] == map$$1[i - 3] && map$$1[i - 1].insertLeft) {
2615           node = map$$1[(i -= 3) + 2];
2616           collapse = "left";
2617         } }
2618       if (bias == "right" && start == mEnd - mStart)
2619         { while (i < map$$1.length - 3 && map$$1[i + 3] == map$$1[i + 4] && !map$$1[i + 5].insertLeft) {
2620           node = map$$1[(i += 3) + 2];
2621           collapse = "right";
2622         } }
2623       break
2624     }
2625   }
2626   return {node: node, start: start, end: end, collapse: collapse, coverStart: mStart, coverEnd: mEnd}
2627 }
2628
2629 function getUsefulRect(rects, bias) {
2630   var rect = nullRect;
2631   if (bias == "left") { for (var i = 0; i < rects.length; i++) {
2632     if ((rect = rects[i]).left != rect.right) { break }
2633   } } else { for (var i$1 = rects.length - 1; i$1 >= 0; i$1--) {
2634     if ((rect = rects[i$1]).left != rect.right) { break }
2635   } }
2636   return rect
2637 }
2638
2639 function measureCharInner(cm, prepared, ch, bias) {
2640   var place = nodeAndOffsetInLineMap(prepared.map, ch, bias);
2641   var node = place.node, start = place.start, end = place.end, collapse = place.collapse;
2642
2643   var rect;
2644   if (node.nodeType == 3) { // If it is a text node, use a range to retrieve the coordinates.
2645     for (var i$1 = 0; i$1 < 4; i$1++) { // Retry a maximum of 4 times when nonsense rectangles are returned
2646       while (start && isExtendingChar(prepared.line.text.charAt(place.coverStart + start))) { --start; }
2647       while (place.coverStart + end < place.coverEnd && isExtendingChar(prepared.line.text.charAt(place.coverStart + end))) { ++end; }
2648       if (ie && ie_version < 9 && start == 0 && end == place.coverEnd - place.coverStart)
2649         { rect = node.parentNode.getBoundingClientRect(); }
2650       else
2651         { rect = getUsefulRect(range(node, start, end).getClientRects(), bias); }
2652       if (rect.left || rect.right || start == 0) { break }
2653       end = start;
2654       start = start - 1;
2655       collapse = "right";
2656     }
2657     if (ie && ie_version < 11) { rect = maybeUpdateRectForZooming(cm.display.measure, rect); }
2658   } else { // If it is a widget, simply get the box for the whole widget.
2659     if (start > 0) { collapse = bias = "right"; }
2660     var rects;
2661     if (cm.options.lineWrapping && (rects = node.getClientRects()).length > 1)
2662       { rect = rects[bias == "right" ? rects.length - 1 : 0]; }
2663     else
2664       { rect = node.getBoundingClientRect(); }
2665   }
2666   if (ie && ie_version < 9 && !start && (!rect || !rect.left && !rect.right)) {
2667     var rSpan = node.parentNode.getClientRects()[0];
2668     if (rSpan)
2669       { rect = {left: rSpan.left, right: rSpan.left + charWidth(cm.display), top: rSpan.top, bottom: rSpan.bottom}; }
2670     else
2671       { rect = nullRect; }
2672   }
2673
2674   var rtop = rect.top - prepared.rect.top, rbot = rect.bottom - prepared.rect.top;
2675   var mid = (rtop + rbot) / 2;
2676   var heights = prepared.view.measure.heights;
2677   var i = 0;
2678   for (; i < heights.length - 1; i++)
2679     { if (mid < heights[i]) { break } }
2680   var top = i ? heights[i - 1] : 0, bot = heights[i];
2681   var result = {left: (collapse == "right" ? rect.right : rect.left) - prepared.rect.left,
2682                 right: (collapse == "left" ? rect.left : rect.right) - prepared.rect.left,
2683                 top: top, bottom: bot};
2684   if (!rect.left && !rect.right) { result.bogus = true; }
2685   if (!cm.options.singleCursorHeightPerLine) { result.rtop = rtop; result.rbottom = rbot; }
2686
2687   return result
2688 }
2689
2690 // Work around problem with bounding client rects on ranges being
2691 // returned incorrectly when zoomed on IE10 and below.
2692 function maybeUpdateRectForZooming(measure, rect) {
2693   if (!window.screen || screen.logicalXDPI == null ||
2694       screen.logicalXDPI == screen.deviceXDPI || !hasBadZoomedRects(measure))
2695     { return rect }
2696   var scaleX = screen.logicalXDPI / screen.deviceXDPI;
2697   var scaleY = screen.logicalYDPI / screen.deviceYDPI;
2698   return {left: rect.left * scaleX, right: rect.right * scaleX,
2699           top: rect.top * scaleY, bottom: rect.bottom * scaleY}
2700 }
2701
2702 function clearLineMeasurementCacheFor(lineView) {
2703   if (lineView.measure) {
2704     lineView.measure.cache = {};
2705     lineView.measure.heights = null;
2706     if (lineView.rest) { for (var i = 0; i < lineView.rest.length; i++)
2707       { lineView.measure.caches[i] = {}; } }
2708   }
2709 }
2710
2711 function clearLineMeasurementCache(cm) {
2712   cm.display.externalMeasure = null;
2713   removeChildren(cm.display.lineMeasure);
2714   for (var i = 0; i < cm.display.view.length; i++)
2715     { clearLineMeasurementCacheFor(cm.display.view[i]); }
2716 }
2717
2718 function clearCaches(cm) {
2719   clearLineMeasurementCache(cm);
2720   cm.display.cachedCharWidth = cm.display.cachedTextHeight = cm.display.cachedPaddingH = null;
2721   if (!cm.options.lineWrapping) { cm.display.maxLineChanged = true; }
2722   cm.display.lineNumChars = null;
2723 }
2724
2725 function pageScrollX() {
2726   // Work around https://bugs.chromium.org/p/chromium/issues/detail?id=489206
2727   // which causes page_Offset and bounding client rects to use
2728   // different reference viewports and invalidate our calculations.
2729   if (chrome && android) { return -(document.body.getBoundingClientRect().left - parseInt(getComputedStyle(document.body).marginLeft)) }
2730   return window.pageXOffset || (document.documentElement || document.body).scrollLeft
2731 }
2732 function pageScrollY() {
2733   if (chrome && android) { return -(document.body.getBoundingClientRect().top - parseInt(getComputedStyle(document.body).marginTop)) }
2734   return window.pageYOffset || (document.documentElement || document.body).scrollTop
2735 }
2736
2737 // Converts a {top, bottom, left, right} box from line-local
2738 // coordinates into another coordinate system. Context may be one of
2739 // "line", "div" (display.lineDiv), "local"./null (editor), "window",
2740 // or "page".
2741 function intoCoordSystem(cm, lineObj, rect, context, includeWidgets) {
2742   if (!includeWidgets && lineObj.widgets) { for (var i = 0; i < lineObj.widgets.length; ++i) { if (lineObj.widgets[i].above) {
2743     var size = widgetHeight(lineObj.widgets[i]);
2744     rect.top += size; rect.bottom += size;
2745   } } }
2746   if (context == "line") { return rect }
2747   if (!context) { context = "local"; }
2748   var yOff = heightAtLine(lineObj);
2749   if (context == "local") { yOff += paddingTop(cm.display); }
2750   else { yOff -= cm.display.viewOffset; }
2751   if (context == "page" || context == "window") {
2752     var lOff = cm.display.lineSpace.getBoundingClientRect();
2753     yOff += lOff.top + (context == "window" ? 0 : pageScrollY());
2754     var xOff = lOff.left + (context == "window" ? 0 : pageScrollX());
2755     rect.left += xOff; rect.right += xOff;
2756   }
2757   rect.top += yOff; rect.bottom += yOff;
2758   return rect
2759 }
2760
2761 // Coverts a box from "div" coords to another coordinate system.
2762 // Context may be "window", "page", "div", or "local"./null.
2763 function fromCoordSystem(cm, coords, context) {
2764   if (context == "div") { return coords }
2765   var left = coords.left, top = coords.top;
2766   // First move into "page" coordinate system
2767   if (context == "page") {
2768     left -= pageScrollX();
2769     top -= pageScrollY();
2770   } else if (context == "local" || !context) {
2771     var localBox = cm.display.sizer.getBoundingClientRect();
2772     left += localBox.left;
2773     top += localBox.top;
2774   }
2775
2776   var lineSpaceBox = cm.display.lineSpace.getBoundingClientRect();
2777   return {left: left - lineSpaceBox.left, top: top - lineSpaceBox.top}
2778 }
2779
2780 function charCoords(cm, pos, context, lineObj, bias) {
2781   if (!lineObj) { lineObj = getLine(cm.doc, pos.line); }
2782   return intoCoordSystem(cm, lineObj, measureChar(cm, lineObj, pos.ch, bias), context)
2783 }
2784
2785 // Returns a box for a given cursor position, which may have an
2786 // 'other' property containing the position of the secondary cursor
2787 // on a bidi boundary.
2788 // A cursor Pos(line, char, "before") is on the same visual line as `char - 1`
2789 // and after `char - 1` in writing order of `char - 1`
2790 // A cursor Pos(line, char, "after") is on the same visual line as `char`
2791 // and before `char` in writing order of `char`
2792 // Examples (upper-case letters are RTL, lower-case are LTR):
2793 //     Pos(0, 1, ...)
2794 //     before   after
2795 // ab     a|b     a|b
2796 // aB     a|B     aB|
2797 // Ab     |Ab     A|b
2798 // AB     B|A     B|A
2799 // Every position after the last character on a line is considered to stick
2800 // to the last character on the line.
2801 function cursorCoords(cm, pos, context, lineObj, preparedMeasure, varHeight) {
2802   lineObj = lineObj || getLine(cm.doc, pos.line);
2803   if (!preparedMeasure) { preparedMeasure = prepareMeasureForLine(cm, lineObj); }
2804   function get(ch, right) {
2805     var m = measureCharPrepared(cm, preparedMeasure, ch, right ? "right" : "left", varHeight);
2806     if (right) { m.left = m.right; } else { m.right = m.left; }
2807     return intoCoordSystem(cm, lineObj, m, context)
2808   }
2809   var order = getOrder(lineObj, cm.doc.direction), ch = pos.ch, sticky = pos.sticky;
2810   if (ch >= lineObj.text.length) {
2811     ch = lineObj.text.length;
2812     sticky = "before";
2813   } else if (ch <= 0) {
2814     ch = 0;
2815     sticky = "after";
2816   }
2817   if (!order) { return get(sticky == "before" ? ch - 1 : ch, sticky == "before") }
2818
2819   function getBidi(ch, partPos, invert) {
2820     var part = order[partPos], right = (part.level % 2) != 0;
2821     return get(invert ? ch - 1 : ch, right != invert)
2822   }
2823   var partPos = getBidiPartAt(order, ch, sticky);
2824   var other = bidiOther;
2825   var val = getBidi(ch, partPos, sticky == "before");
2826   if (other != null) { val.other = getBidi(ch, other, sticky != "before"); }
2827   return val
2828 }
2829
2830 // Used to cheaply estimate the coordinates for a position. Used for
2831 // intermediate scroll updates.
2832 function estimateCoords(cm, pos) {
2833   var left = 0;
2834   pos = clipPos(cm.doc, pos);
2835   if (!cm.options.lineWrapping) { left = charWidth(cm.display) * pos.ch; }
2836   var lineObj = getLine(cm.doc, pos.line);
2837   var top = heightAtLine(lineObj) + paddingTop(cm.display);
2838   return {left: left, right: left, top: top, bottom: top + lineObj.height}
2839 }
2840
2841 // Positions returned by coordsChar contain some extra information.
2842 // xRel is the relative x position of the input coordinates compared
2843 // to the found position (so xRel > 0 means the coordinates are to
2844 // the right of the character position, for example). When outside
2845 // is true, that means the coordinates lie outside the line's
2846 // vertical range.
2847 function PosWithInfo(line, ch, sticky, outside, xRel) {
2848   var pos = Pos(line, ch, sticky);
2849   pos.xRel = xRel;
2850   if (outside) { pos.outside = true; }
2851   return pos
2852 }
2853
2854 // Compute the character position closest to the given coordinates.
2855 // Input must be lineSpace-local ("div" coordinate system).
2856 function coordsChar(cm, x, y) {
2857   var doc = cm.doc;
2858   y += cm.display.viewOffset;
2859   if (y < 0) { return PosWithInfo(doc.first, 0, null, true, -1) }
2860   var lineN = lineAtHeight(doc, y), last = doc.first + doc.size - 1;
2861   if (lineN > last)
2862     { return PosWithInfo(doc.first + doc.size - 1, getLine(doc, last).text.length, null, true, 1) }
2863   if (x < 0) { x = 0; }
2864
2865   var lineObj = getLine(doc, lineN);
2866   for (;;) {
2867     var found = coordsCharInner(cm, lineObj, lineN, x, y);
2868     var merged = collapsedSpanAtEnd(lineObj);
2869     var mergedPos = merged && merged.find(0, true);
2870     if (merged && (found.ch > mergedPos.from.ch || found.ch == mergedPos.from.ch && found.xRel > 0))
2871       { lineN = lineNo(lineObj = mergedPos.to.line); }
2872     else
2873       { return found }
2874   }
2875 }
2876
2877 function wrappedLineExtent(cm, lineObj, preparedMeasure, y) {
2878   var measure = function (ch) { return intoCoordSystem(cm, lineObj, measureCharPrepared(cm, preparedMeasure, ch), "line"); };
2879   var end = lineObj.text.length;
2880   var begin = findFirst(function (ch) { return measure(ch - 1).bottom <= y; }, end, 0);
2881   end = findFirst(function (ch) { return measure(ch).top > y; }, begin, end);
2882   return {begin: begin, end: end}
2883 }
2884
2885 function wrappedLineExtentChar(cm, lineObj, preparedMeasure, target) {
2886   var targetTop = intoCoordSystem(cm, lineObj, measureCharPrepared(cm, preparedMeasure, target), "line").top;
2887   return wrappedLineExtent(cm, lineObj, preparedMeasure, targetTop)
2888 }
2889
2890 function coordsCharInner(cm, lineObj, lineNo$$1, x, y) {
2891   y -= heightAtLine(lineObj);
2892   var begin = 0, end = lineObj.text.length;
2893   var preparedMeasure = prepareMeasureForLine(cm, lineObj);
2894   var pos;
2895   var order = getOrder(lineObj, cm.doc.direction);
2896   if (order) {
2897     if (cm.options.lineWrapping) {
2898       var assign;
2899       ((assign = wrappedLineExtent(cm, lineObj, preparedMeasure, y), begin = assign.begin, end = assign.end, assign));
2900     }
2901     pos = new Pos(lineNo$$1, Math.floor(begin + (end - begin) / 2));
2902     var beginLeft = cursorCoords(cm, pos, "line", lineObj, preparedMeasure).left;
2903     var dir = beginLeft < x ? 1 : -1;
2904     var prevDiff, diff = beginLeft - x, prevPos;
2905     var steps = Math.ceil((end - begin) / 4);
2906     outer: do {
2907       prevDiff = diff;
2908       prevPos = pos;
2909       var i = 0;
2910       for (; i < steps; ++i) {
2911         var prevPos$1 = pos;
2912         pos = moveVisually(cm, lineObj, pos, dir);
2913         if (pos == null || pos.ch < begin || end <= (pos.sticky == "before" ? pos.ch - 1 : pos.ch)) {
2914           pos = prevPos$1;
2915           break outer
2916         }
2917       }
2918       diff = cursorCoords(cm, pos, "line", lineObj, preparedMeasure).left - x;
2919       if (steps > 1) {
2920         var diff_change_per_step = Math.abs(diff - prevDiff) / steps;
2921         steps = Math.min(steps, Math.ceil(Math.abs(diff) / diff_change_per_step));
2922         dir = diff < 0 ? 1 : -1;
2923       }
2924     } while (diff != 0 && (steps > 1 || ((dir < 0) != (diff < 0) && (Math.abs(diff) <= Math.abs(prevDiff)))))
2925     if (Math.abs(diff) > Math.abs(prevDiff)) {
2926       if ((diff < 0) == (prevDiff < 0)) { throw new Error("Broke out of infinite loop in coordsCharInner") }
2927       pos = prevPos;
2928     }
2929   } else {
2930     var ch = findFirst(function (ch) {
2931       var box = intoCoordSystem(cm, lineObj, measureCharPrepared(cm, preparedMeasure, ch), "line");
2932       if (box.top > y) {
2933         // For the cursor stickiness
2934         end = Math.min(ch, end);
2935         return true
2936       }
2937       else if (box.bottom <= y) { return false }
2938       else if (box.left > x) { return true }
2939       else if (box.right < x) { return false }
2940       else { return (x - box.left < box.right - x) }
2941     }, begin, end);
2942     ch = skipExtendingChars(lineObj.text, ch, 1);
2943     pos = new Pos(lineNo$$1, ch, ch == end ? "before" : "after");
2944   }
2945   var coords = cursorCoords(cm, pos, "line", lineObj, preparedMeasure);
2946   if (y < coords.top || coords.bottom < y) { pos.outside = true; }
2947   pos.xRel = x < coords.left ? -1 : (x > coords.right ? 1 : 0);
2948   return pos
2949 }
2950
2951 var measureText;
2952 // Compute the default text height.
2953 function textHeight(display) {
2954   if (display.cachedTextHeight != null) { return display.cachedTextHeight }
2955   if (measureText == null) {
2956     measureText = elt("pre");
2957     // Measure a bunch of lines, for browsers that compute
2958     // fractional heights.
2959     for (var i = 0; i < 49; ++i) {
2960       measureText.appendChild(document.createTextNode("x"));
2961       measureText.appendChild(elt("br"));
2962     }
2963     measureText.appendChild(document.createTextNode("x"));
2964   }
2965   removeChildrenAndAdd(display.measure, measureText);
2966   var height = measureText.offsetHeight / 50;
2967   if (height > 3) { display.cachedTextHeight = height; }
2968   removeChildren(display.measure);
2969   return height || 1
2970 }
2971
2972 // Compute the default character width.
2973 function charWidth(display) {
2974   if (display.cachedCharWidth != null) { return display.cachedCharWidth }
2975   var anchor = elt("span", "xxxxxxxxxx");
2976   var pre = elt("pre", [anchor]);
2977   removeChildrenAndAdd(display.measure, pre);
2978   var rect = anchor.getBoundingClientRect(), width = (rect.right - rect.left) / 10;
2979   if (width > 2) { display.cachedCharWidth = width; }
2980   return width || 10
2981 }
2982
2983 // Do a bulk-read of the DOM positions and sizes needed to draw the
2984 // view, so that we don't interleave reading and writing to the DOM.
2985 function getDimensions(cm) {
2986   var d = cm.display, left = {}, width = {};
2987   var gutterLeft = d.gutters.clientLeft;
2988   for (var n = d.gutters.firstChild, i = 0; n; n = n.nextSibling, ++i) {
2989     left[cm.options.gutters[i]] = n.offsetLeft + n.clientLeft + gutterLeft;
2990     width[cm.options.gutters[i]] = n.clientWidth;
2991   }
2992   return {fixedPos: compensateForHScroll(d),
2993           gutterTotalWidth: d.gutters.offsetWidth,
2994           gutterLeft: left,
2995           gutterWidth: width,
2996           wrapperWidth: d.wrapper.clientWidth}
2997 }
2998
2999 // Computes display.scroller.scrollLeft + display.gutters.offsetWidth,
3000 // but using getBoundingClientRect to get a sub-pixel-accurate
3001 // result.
3002 function compensateForHScroll(display) {
3003   return display.scroller.getBoundingClientRect().left - display.sizer.getBoundingClientRect().left
3004 }
3005
3006 // Returns a function that estimates the height of a line, to use as
3007 // first approximation until the line becomes visible (and is thus
3008 // properly measurable).
3009 function estimateHeight(cm) {
3010   var th = textHeight(cm.display), wrapping = cm.options.lineWrapping;
3011   var perLine = wrapping && Math.max(5, cm.display.scroller.clientWidth / charWidth(cm.display) - 3);
3012   return function (line) {
3013     if (lineIsHidden(cm.doc, line)) { return 0 }
3014
3015     var widgetsHeight = 0;
3016     if (line.widgets) { for (var i = 0; i < line.widgets.length; i++) {
3017       if (line.widgets[i].height) { widgetsHeight += line.widgets[i].height; }
3018     } }
3019
3020     if (wrapping)
3021       { return widgetsHeight + (Math.ceil(line.text.length / perLine) || 1) * th }
3022     else
3023       { return widgetsHeight + th }
3024   }
3025 }
3026
3027 function estimateLineHeights(cm) {
3028   var doc = cm.doc, est = estimateHeight(cm);
3029   doc.iter(function (line) {
3030     var estHeight = est(line);
3031     if (estHeight != line.height) { updateLineHeight(line, estHeight); }
3032   });
3033 }
3034
3035 // Given a mouse event, find the corresponding position. If liberal
3036 // is false, it checks whether a gutter or scrollbar was clicked,
3037 // and returns null if it was. forRect is used by rectangular
3038 // selections, and tries to estimate a character position even for
3039 // coordinates beyond the right of the text.
3040 function posFromMouse(cm, e, liberal, forRect) {
3041   var display = cm.display;
3042   if (!liberal && e_target(e).getAttribute("cm-not-content") == "true") { return null }
3043
3044   var x, y, space = display.lineSpace.getBoundingClientRect();
3045   // Fails unpredictably on IE[67] when mouse is dragged around quickly.
3046   try { x = e.clientX - space.left; y = e.clientY - space.top; }
3047   catch (e) { return null }
3048   var coords = coordsChar(cm, x, y), line;
3049   if (forRect && coords.xRel == 1 && (line = getLine(cm.doc, coords.line).text).length == coords.ch) {
3050     var colDiff = countColumn(line, line.length, cm.options.tabSize) - line.length;
3051     coords = Pos(coords.line, Math.max(0, Math.round((x - paddingH(cm.display).left) / charWidth(cm.display)) - colDiff));
3052   }
3053   return coords
3054 }
3055
3056 // Find the view element corresponding to a given line. Return null
3057 // when the line isn't visible.
3058 function findViewIndex(cm, n) {
3059   if (n >= cm.display.viewTo) { return null }
3060   n -= cm.display.viewFrom;
3061   if (n < 0) { return null }
3062   var view = cm.display.view;
3063   for (var i = 0; i < view.length; i++) {
3064     n -= view[i].size;
3065     if (n < 0) { return i }
3066   }
3067 }
3068
3069 function updateSelection(cm) {
3070   cm.display.input.showSelection(cm.display.input.prepareSelection());
3071 }
3072
3073 function prepareSelection(cm, primary) {
3074   var doc = cm.doc, result = {};
3075   var curFragment = result.cursors = document.createDocumentFragment();
3076   var selFragment = result.selection = document.createDocumentFragment();
3077
3078   for (var i = 0; i < doc.sel.ranges.length; i++) {
3079     if (primary === false && i == doc.sel.primIndex) { continue }
3080     var range$$1 = doc.sel.ranges[i];
3081     if (range$$1.from().line >= cm.display.viewTo || range$$1.to().line < cm.display.viewFrom) { continue }
3082     var collapsed = range$$1.empty();
3083     if (collapsed || cm.options.showCursorWhenSelecting)
3084       { drawSelectionCursor(cm, range$$1.head, curFragment); }
3085     if (!collapsed)
3086       { drawSelectionRange(cm, range$$1, selFragment); }
3087   }
3088   return result
3089 }
3090
3091 // Draws a cursor for the given range
3092 function drawSelectionCursor(cm, head, output) {
3093   var pos = cursorCoords(cm, head, "div", null, null, !cm.options.singleCursorHeightPerLine);
3094
3095   var cursor = output.appendChild(elt("div", "\u00a0", "CodeMirror-cursor"));
3096   cursor.style.left = pos.left + "px";
3097   cursor.style.top = pos.top + "px";
3098   cursor.style.height = Math.max(0, pos.bottom - pos.top) * cm.options.cursorHeight + "px";
3099
3100   if (pos.other) {
3101     // Secondary cursor, shown when on a 'jump' in bi-directional text
3102     var otherCursor = output.appendChild(elt("div", "\u00a0", "CodeMirror-cursor CodeMirror-secondarycursor"));
3103     otherCursor.style.display = "";
3104     otherCursor.style.left = pos.other.left + "px";
3105     otherCursor.style.top = pos.other.top + "px";
3106     otherCursor.style.height = (pos.other.bottom - pos.other.top) * .85 + "px";
3107   }
3108 }
3109
3110 // Draws the given range as a highlighted selection
3111 function drawSelectionRange(cm, range$$1, output) {
3112   var display = cm.display, doc = cm.doc;
3113   var fragment = document.createDocumentFragment();
3114   var padding = paddingH(cm.display), leftSide = padding.left;
3115   var rightSide = Math.max(display.sizerWidth, displayWidth(cm) - display.sizer.offsetLeft) - padding.right;
3116
3117   function add(left, top, width, bottom) {
3118     if (top < 0) { top = 0; }
3119     top = Math.round(top);
3120     bottom = Math.round(bottom);
3121     fragment.appendChild(elt("div", null, "CodeMirror-selected", ("position: absolute; left: " + left + "px;\n                             top: " + top + "px; width: " + (width == null ? rightSide - left : width) + "px;\n                             height: " + (bottom - top) + "px")));
3122   }
3123
3124   function drawForLine(line, fromArg, toArg) {
3125     var lineObj = getLine(doc, line);
3126     var lineLen = lineObj.text.length;
3127     var start, end;
3128     function coords(ch, bias) {
3129       return charCoords(cm, Pos(line, ch), "div", lineObj, bias)
3130     }
3131
3132     iterateBidiSections(getOrder(lineObj, doc.direction), fromArg || 0, toArg == null ? lineLen : toArg, function (from, to, dir) {
3133       var leftPos = coords(from, "left"), rightPos, left, right;
3134       if (from == to) {
3135         rightPos = leftPos;
3136         left = right = leftPos.left;
3137       } else {
3138         rightPos = coords(to - 1, "right");
3139         if (dir == "rtl") { var tmp = leftPos; leftPos = rightPos; rightPos = tmp; }
3140         left = leftPos.left;
3141         right = rightPos.right;
3142       }
3143       if (fromArg == null && from == 0) { left = leftSide; }
3144       if (rightPos.top - leftPos.top > 3) { // Different lines, draw top part
3145         add(left, leftPos.top, null, leftPos.bottom);
3146         left = leftSide;
3147         if (leftPos.bottom < rightPos.top) { add(left, leftPos.bottom, null, rightPos.top); }
3148       }
3149       if (toArg == null && to == lineLen) { right = rightSide; }
3150       if (!start || leftPos.top < start.top || leftPos.top == start.top && leftPos.left < start.left)
3151         { start = leftPos; }
3152       if (!end || rightPos.bottom > end.bottom || rightPos.bottom == end.bottom && rightPos.right > end.right)
3153         { end = rightPos; }
3154       if (left < leftSide + 1) { left = leftSide; }
3155       add(left, rightPos.top, right - left, rightPos.bottom);
3156     });
3157     return {start: start, end: end}
3158   }
3159
3160   var sFrom = range$$1.from(), sTo = range$$1.to();
3161   if (sFrom.line == sTo.line) {
3162     drawForLine(sFrom.line, sFrom.ch, sTo.ch);
3163   } else {
3164     var fromLine = getLine(doc, sFrom.line), toLine = getLine(doc, sTo.line);
3165     var singleVLine = visualLine(fromLine) == visualLine(toLine);
3166     var leftEnd = drawForLine(sFrom.line, sFrom.ch, singleVLine ? fromLine.text.length + 1 : null).end;
3167     var rightStart = drawForLine(sTo.line, singleVLine ? 0 : null, sTo.ch).start;
3168     if (singleVLine) {
3169       if (leftEnd.top < rightStart.top - 2) {
3170         add(leftEnd.right, leftEnd.top, null, leftEnd.bottom);
3171         add(leftSide, rightStart.top, rightStart.left, rightStart.bottom);
3172       } else {
3173         add(leftEnd.right, leftEnd.top, rightStart.left - leftEnd.right, leftEnd.bottom);
3174       }
3175     }
3176     if (leftEnd.bottom < rightStart.top)
3177       { add(leftSide, leftEnd.bottom, null, rightStart.top); }
3178   }
3179
3180   output.appendChild(fragment);
3181 }
3182
3183 // Cursor-blinking
3184 function restartBlink(cm) {
3185   if (!cm.state.focused) { return }
3186   var display = cm.display;
3187   clearInterval(display.blinker);
3188   var on = true;
3189   display.cursorDiv.style.visibility = "";
3190   if (cm.options.cursorBlinkRate > 0)
3191     { display.blinker = setInterval(function () { return display.cursorDiv.style.visibility = (on = !on) ? "" : "hidden"; },
3192       cm.options.cursorBlinkRate); }
3193   else if (cm.options.cursorBlinkRate < 0)
3194     { display.cursorDiv.style.visibility = "hidden"; }
3195 }
3196
3197 function ensureFocus(cm) {
3198   if (!cm.state.focused) { cm.display.input.focus(); onFocus(cm); }
3199 }
3200
3201 function delayBlurEvent(cm) {
3202   cm.state.delayingBlurEvent = true;
3203   setTimeout(function () { if (cm.state.delayingBlurEvent) {
3204     cm.state.delayingBlurEvent = false;
3205     onBlur(cm);
3206   } }, 100);
3207 }
3208
3209 function onFocus(cm, e) {
3210   if (cm.state.delayingBlurEvent) { cm.state.delayingBlurEvent = false; }
3211
3212   if (cm.options.readOnly == "nocursor") { return }
3213   if (!cm.state.focused) {
3214     signal(cm, "focus", cm, e);
3215     cm.state.focused = true;
3216     addClass(cm.display.wrapper, "CodeMirror-focused");
3217     // This test prevents this from firing when a context
3218     // menu is closed (since the input reset would kill the
3219     // select-all detection hack)
3220     if (!cm.curOp && cm.display.selForContextMenu != cm.doc.sel) {
3221       cm.display.input.reset();
3222       if (webkit) { setTimeout(function () { return cm.display.input.reset(true); }, 20); } // Issue #1730
3223     }
3224     cm.display.input.receivedFocus();
3225   }
3226   restartBlink(cm);
3227 }
3228 function onBlur(cm, e) {
3229   if (cm.state.delayingBlurEvent) { return }
3230
3231   if (cm.state.focused) {
3232     signal(cm, "blur", cm, e);
3233     cm.state.focused = false;
3234     rmClass(cm.display.wrapper, "CodeMirror-focused");
3235   }
3236   clearInterval(cm.display.blinker);
3237   setTimeout(function () { if (!cm.state.focused) { cm.display.shift = false; } }, 150);
3238 }
3239
3240 // Read the actual heights of the rendered lines, and update their
3241 // stored heights to match.
3242 function updateHeightsInViewport(cm) {
3243   var display = cm.display;
3244   var prevBottom = display.lineDiv.offsetTop;
3245   for (var i = 0; i < display.view.length; i++) {
3246     var cur = display.view[i], height = (void 0);
3247     if (cur.hidden) { continue }
3248     if (ie && ie_version < 8) {
3249       var bot = cur.node.offsetTop + cur.node.offsetHeight;
3250       height = bot - prevBottom;
3251       prevBottom = bot;
3252     } else {
3253       var box = cur.node.getBoundingClientRect();
3254       height = box.bottom - box.top;
3255     }
3256     var diff = cur.line.height - height;
3257     if (height < 2) { height = textHeight(display); }
3258     if (diff > .005 || diff < -.005) {
3259       updateLineHeight(cur.line, height);
3260       updateWidgetHeight(cur.line);
3261       if (cur.rest) { for (var j = 0; j < cur.rest.length; j++)
3262         { updateWidgetHeight(cur.rest[j]); } }
3263     }
3264   }
3265 }
3266
3267 // Read and store the height of line widgets associated with the
3268 // given line.
3269 function updateWidgetHeight(line) {
3270   if (line.widgets) { for (var i = 0; i < line.widgets.length; ++i)
3271     { line.widgets[i].height = line.widgets[i].node.parentNode.offsetHeight; } }
3272 }
3273
3274 // Compute the lines that are visible in a given viewport (defaults
3275 // the the current scroll position). viewport may contain top,
3276 // height, and ensure (see op.scrollToPos) properties.
3277 function visibleLines(display, doc, viewport) {
3278   var top = viewport && viewport.top != null ? Math.max(0, viewport.top) : display.scroller.scrollTop;
3279   top = Math.floor(top - paddingTop(display));
3280   var bottom = viewport && viewport.bottom != null ? viewport.bottom : top + display.wrapper.clientHeight;
3281
3282   var from = lineAtHeight(doc, top), to = lineAtHeight(doc, bottom);
3283   // Ensure is a {from: {line, ch}, to: {line, ch}} object, and
3284   // forces those lines into the viewport (if possible).
3285   if (viewport && viewport.ensure) {
3286     var ensureFrom = viewport.ensure.from.line, ensureTo = viewport.ensure.to.line;
3287     if (ensureFrom < from) {
3288       from = ensureFrom;
3289       to = lineAtHeight(doc, heightAtLine(getLine(doc, ensureFrom)) + display.wrapper.clientHeight);
3290     } else if (Math.min(ensureTo, doc.lastLine()) >= to) {
3291       from = lineAtHeight(doc, heightAtLine(getLine(doc, ensureTo)) - display.wrapper.clientHeight);
3292       to = ensureTo;
3293     }
3294   }
3295   return {from: from, to: Math.max(to, from + 1)}
3296 }
3297
3298 // Re-align line numbers and gutter marks to compensate for
3299 // horizontal scrolling.
3300 function alignHorizontally(cm) {
3301   var display = cm.display, view = display.view;
3302   if (!display.alignWidgets && (!display.gutters.firstChild || !cm.options.fixedGutter)) { return }
3303   var comp = compensateForHScroll(display) - display.scroller.scrollLeft + cm.doc.scrollLeft;
3304   var gutterW = display.gutters.offsetWidth, left = comp + "px";
3305   for (var i = 0; i < view.length; i++) { if (!view[i].hidden) {
3306     if (cm.options.fixedGutter) {
3307       if (view[i].gutter)
3308         { view[i].gutter.style.left = left; }
3309       if (view[i].gutterBackground)
3310         { view[i].gutterBackground.style.left = left; }
3311     }
3312     var align = view[i].alignable;
3313     if (align) { for (var j = 0; j < align.length; j++)
3314       { align[j].style.left = left; } }
3315   } }
3316   if (cm.options.fixedGutter)
3317     { display.gutters.style.left = (comp + gutterW) + "px"; }
3318 }
3319
3320 // Used to ensure that the line number gutter is still the right
3321 // size for the current document size. Returns true when an update
3322 // is needed.
3323 function maybeUpdateLineNumberWidth(cm) {
3324   if (!cm.options.lineNumbers) { return false }
3325   var doc = cm.doc, last = lineNumberFor(cm.options, doc.first + doc.size - 1), display = cm.display;
3326   if (last.length != display.lineNumChars) {
3327     var test = display.measure.appendChild(elt("div", [elt("div", last)],
3328                                                "CodeMirror-linenumber CodeMirror-gutter-elt"));
3329     var innerW = test.firstChild.offsetWidth, padding = test.offsetWidth - innerW;
3330     display.lineGutter.style.width = "";
3331     display.lineNumInnerWidth = Math.max(innerW, display.lineGutter.offsetWidth - padding) + 1;
3332     display.lineNumWidth = display.lineNumInnerWidth + padding;
3333     display.lineNumChars = display.lineNumInnerWidth ? last.length : -1;
3334     display.lineGutter.style.width = display.lineNumWidth + "px";
3335     updateGutterSpace(cm);
3336     return true
3337   }
3338   return false
3339 }
3340
3341 // SCROLLING THINGS INTO VIEW
3342
3343 // If an editor sits on the top or bottom of the window, partially
3344 // scrolled out of view, this ensures that the cursor is visible.
3345 function maybeScrollWindow(cm, rect) {
3346   if (signalDOMEvent(cm, "scrollCursorIntoView")) { return }
3347
3348   var display = cm.display, box = display.sizer.getBoundingClientRect(), doScroll = null;
3349   if (rect.top + box.top < 0) { doScroll = true; }
3350   else if (rect.bottom + box.top > (window.innerHeight || document.documentElement.clientHeight)) { doScroll = false; }
3351   if (doScroll != null && !phantom) {
3352     var scrollNode = elt("div", "\u200b", null, ("position: absolute;\n                         top: " + (rect.top - display.viewOffset - paddingTop(cm.display)) + "px;\n                         height: " + (rect.bottom - rect.top + scrollGap(cm) + display.barHeight) + "px;\n                         left: " + (rect.left) + "px; width: " + (Math.max(2, rect.right - rect.left)) + "px;"));
3353     cm.display.lineSpace.appendChild(scrollNode);
3354     scrollNode.scrollIntoView(doScroll);
3355     cm.display.lineSpace.removeChild(scrollNode);
3356   }
3357 }
3358
3359 // Scroll a given position into view (immediately), verifying that
3360 // it actually became visible (as line heights are accurately
3361 // measured, the position of something may 'drift' during drawing).
3362 function scrollPosIntoView(cm, pos, end, margin) {
3363   if (margin == null) { margin = 0; }
3364   var rect;
3365   if (!cm.options.lineWrapping && pos == end) {
3366     // Set pos and end to the cursor positions around the character pos sticks to
3367     // If pos.sticky == "before", that is around pos.ch - 1, otherwise around pos.ch
3368     // If pos == Pos(_, 0, "before"), pos and end are unchanged
3369     pos = pos.ch ? Pos(pos.line, pos.sticky == "before" ? pos.ch - 1 : pos.ch, "after") : pos;
3370     end = pos.sticky == "before" ? Pos(pos.line, pos.ch + 1, "before") : pos;
3371   }
3372   for (var limit = 0; limit < 5; limit++) {
3373     var changed = false;
3374     var coords = cursorCoords(cm, pos);
3375     var endCoords = !end || end == pos ? coords : cursorCoords(cm, end);
3376     rect = {left: Math.min(coords.left, endCoords.left),
3377             top: Math.min(coords.top, endCoords.top) - margin,
3378             right: Math.max(coords.left, endCoords.left),
3379             bottom: Math.max(coords.bottom, endCoords.bottom) + margin};
3380     var scrollPos = calculateScrollPos(cm, rect);
3381     var startTop = cm.doc.scrollTop, startLeft = cm.doc.scrollLeft;
3382     if (scrollPos.scrollTop != null) {
3383       updateScrollTop(cm, scrollPos.scrollTop);
3384       if (Math.abs(cm.doc.scrollTop - startTop) > 1) { changed = true; }
3385     }
3386     if (scrollPos.scrollLeft != null) {
3387       setScrollLeft(cm, scrollPos.scrollLeft);
3388       if (Math.abs(cm.doc.scrollLeft - startLeft) > 1) { changed = true; }
3389     }
3390     if (!changed) { break }
3391   }
3392   return rect
3393 }
3394
3395 // Scroll a given set of coordinates into view (immediately).
3396 function scrollIntoView(cm, rect) {
3397   var scrollPos = calculateScrollPos(cm, rect);
3398   if (scrollPos.scrollTop != null) { updateScrollTop(cm, scrollPos.scrollTop); }
3399   if (scrollPos.scrollLeft != null) { setScrollLeft(cm, scrollPos.scrollLeft); }
3400 }
3401
3402 // Calculate a new scroll position needed to scroll the given
3403 // rectangle into view. Returns an object with scrollTop and
3404 // scrollLeft properties. When these are undefined, the
3405 // vertical/horizontal position does not need to be adjusted.
3406 function calculateScrollPos(cm, rect) {
3407   var display = cm.display, snapMargin = textHeight(cm.display);
3408   if (rect.top < 0) { rect.top = 0; }
3409   var screentop = cm.curOp && cm.curOp.scrollTop != null ? cm.curOp.scrollTop : display.scroller.scrollTop;
3410   var screen = displayHeight(cm), result = {};
3411   if (rect.bottom - rect.top > screen) { rect.bottom = rect.top + screen; }
3412   var docBottom = cm.doc.height + paddingVert(display);
3413   var atTop = rect.top < snapMargin, atBottom = rect.bottom > docBottom - snapMargin;
3414   if (rect.top < screentop) {
3415     result.scrollTop = atTop ? 0 : rect.top;
3416   } else if (rect.bottom > screentop + screen) {
3417     var newTop = Math.min(rect.top, (atBottom ? docBottom : rect.bottom) - screen);
3418     if (newTop != screentop) { result.scrollTop = newTop; }
3419   }
3420
3421   var screenleft = cm.curOp && cm.curOp.scrollLeft != null ? cm.curOp.scrollLeft : display.scroller.scrollLeft;
3422   var screenw = displayWidth(cm) - (cm.options.fixedGutter ? display.gutters.offsetWidth : 0);
3423   var tooWide = rect.right - rect.left > screenw;
3424   if (tooWide) { rect.right = rect.left + screenw; }
3425   if (rect.left < 10)
3426     { result.scrollLeft = 0; }
3427   else if (rect.left < screenleft)
3428     { result.scrollLeft = Math.max(0, rect.left - (tooWide ? 0 : 10)); }
3429   else if (rect.right > screenw + screenleft - 3)
3430     { result.scrollLeft = rect.right + (tooWide ? 0 : 10) - screenw; }
3431   return result
3432 }
3433
3434 // Store a relative adjustment to the scroll position in the current
3435 // operation (to be applied when the operation finishes).
3436 function addToScrollTop(cm, top) {
3437   if (top == null) { return }
3438   resolveScrollToPos(cm);
3439   cm.curOp.scrollTop = (cm.curOp.scrollTop == null ? cm.doc.scrollTop : cm.curOp.scrollTop) + top;
3440 }
3441
3442 // Make sure that at the end of the operation the current cursor is
3443 // shown.
3444 function ensureCursorVisible(cm) {
3445   resolveScrollToPos(cm);
3446   var cur = cm.getCursor();
3447   cm.curOp.scrollToPos = {from: cur, to: cur, margin: cm.options.cursorScrollMargin};
3448 }
3449
3450 function scrollToCoords(cm, x, y) {
3451   if (x != null || y != null) { resolveScrollToPos(cm); }
3452   if (x != null) { cm.curOp.scrollLeft = x; }
3453   if (y != null) { cm.curOp.scrollTop = y; }
3454 }
3455
3456 function scrollToRange(cm, range$$1) {
3457   resolveScrollToPos(cm);
3458   cm.curOp.scrollToPos = range$$1;
3459 }
3460
3461 // When an operation has its scrollToPos property set, and another
3462 // scroll action is applied before the end of the operation, this
3463 // 'simulates' scrolling that position into view in a cheap way, so
3464 // that the effect of intermediate scroll commands is not ignored.
3465 function resolveScrollToPos(cm) {
3466   var range$$1 = cm.curOp.scrollToPos;
3467   if (range$$1) {
3468     cm.curOp.scrollToPos = null;
3469     var from = estimateCoords(cm, range$$1.from), to = estimateCoords(cm, range$$1.to);
3470     scrollToCoordsRange(cm, from, to, range$$1.margin);
3471   }
3472 }
3473
3474 function scrollToCoordsRange(cm, from, to, margin) {
3475   var sPos = calculateScrollPos(cm, {
3476     left: Math.min(from.left, to.left),
3477     top: Math.min(from.top, to.top) - margin,
3478     right: Math.max(from.right, to.right),
3479     bottom: Math.max(from.bottom, to.bottom) + margin
3480   });
3481   scrollToCoords(cm, sPos.scrollLeft, sPos.scrollTop);
3482 }
3483
3484 // Sync the scrollable area and scrollbars, ensure the viewport
3485 // covers the visible area.
3486 function updateScrollTop(cm, val) {
3487   if (Math.abs(cm.doc.scrollTop - val) < 2) { return }
3488   if (!gecko) { updateDisplaySimple(cm, {top: val}); }
3489   setScrollTop(cm, val, true);
3490   if (gecko) { updateDisplaySimple(cm); }
3491   startWorker(cm, 100);
3492 }
3493
3494 function setScrollTop(cm, val, forceScroll) {
3495   val = Math.min(cm.display.scroller.scrollHeight - cm.display.scroller.clientHeight, val);
3496   if (cm.display.scroller.scrollTop == val && !forceScroll) { return }
3497   cm.doc.scrollTop = val;
3498   cm.display.scrollbars.setScrollTop(val);
3499   if (cm.display.scroller.scrollTop != val) { cm.display.scroller.scrollTop = val; }
3500 }
3501
3502 // Sync scroller and scrollbar, ensure the gutter elements are
3503 // aligned.
3504 function setScrollLeft(cm, val, isScroller, forceScroll) {
3505   val = Math.min(val, cm.display.scroller.scrollWidth - cm.display.scroller.clientWidth);
3506   if ((isScroller ? val == cm.doc.scrollLeft : Math.abs(cm.doc.scrollLeft - val) < 2) && !forceScroll) { return }
3507   cm.doc.scrollLeft = val;
3508   alignHorizontally(cm);
3509   if (cm.display.scroller.scrollLeft != val) { cm.display.scroller.scrollLeft = val; }
3510   cm.display.scrollbars.setScrollLeft(val);
3511 }
3512
3513 // SCROLLBARS
3514
3515 // Prepare DOM reads needed to update the scrollbars. Done in one
3516 // shot to minimize update/measure roundtrips.
3517 function measureForScrollbars(cm) {
3518   var d = cm.display, gutterW = d.gutters.offsetWidth;
3519   var docH = Math.round(cm.doc.height + paddingVert(cm.display));
3520   return {
3521     clientHeight: d.scroller.clientHeight,
3522     viewHeight: d.wrapper.clientHeight,
3523     scrollWidth: d.scroller.scrollWidth, clientWidth: d.scroller.clientWidth,
3524     viewWidth: d.wrapper.clientWidth,
3525     barLeft: cm.options.fixedGutter ? gutterW : 0,
3526     docHeight: docH,
3527     scrollHeight: docH + scrollGap(cm) + d.barHeight,
3528     nativeBarWidth: d.nativeBarWidth,
3529     gutterWidth: gutterW
3530   }
3531 }
3532
3533 var NativeScrollbars = function(place, scroll, cm) {
3534   this.cm = cm;
3535   var vert = this.vert = elt("div", [elt("div", null, null, "min-width: 1px")], "CodeMirror-vscrollbar");
3536   var horiz = this.horiz = elt("div", [elt("div", null, null, "height: 100%; min-height: 1px")], "CodeMirror-hscrollbar");
3537   place(vert); place(horiz);
3538
3539   on(vert, "scroll", function () {
3540     if (vert.clientHeight) { scroll(vert.scrollTop, "vertical"); }
3541   });
3542   on(horiz, "scroll", function () {
3543     if (horiz.clientWidth) { scroll(horiz.scrollLeft, "horizontal"); }
3544   });
3545
3546   this.checkedZeroWidth = false;
3547   // Need to set a minimum width to see the scrollbar on IE7 (but must not set it on IE8).
3548   if (ie && ie_version < 8) { this.horiz.style.minHeight = this.vert.style.minWidth = "18px"; }
3549 };
3550
3551 NativeScrollbars.prototype.update = function (measure) {
3552   var needsH = measure.scrollWidth > measure.clientWidth + 1;
3553   var needsV = measure.scrollHeight > measure.clientHeight + 1;
3554   var sWidth = measure.nativeBarWidth;
3555
3556   if (needsV) {
3557     this.vert.style.display = "block";
3558     this.vert.style.bottom = needsH ? sWidth + "px" : "0";
3559     var totalHeight = measure.viewHeight - (needsH ? sWidth : 0);
3560     // A bug in IE8 can cause this value to be negative, so guard it.
3561     this.vert.firstChild.style.height =
3562       Math.max(0, measure.scrollHeight - measure.clientHeight + totalHeight) + "px";
3563   } else {
3564     this.vert.style.display = "";
3565     this.vert.firstChild.style.height = "0";
3566   }
3567
3568   if (needsH) {
3569     this.horiz.style.display = "block";
3570     this.horiz.style.right = needsV ? sWidth + "px" : "0";
3571     this.horiz.style.left = measure.barLeft + "px";
3572     var totalWidth = measure.viewWidth - measure.barLeft - (needsV ? sWidth : 0);
3573     this.horiz.firstChild.style.width =
3574       Math.max(0, measure.scrollWidth - measure.clientWidth + totalWidth) + "px";
3575   } else {
3576     this.horiz.style.display = "";
3577     this.horiz.firstChild.style.width = "0";
3578   }
3579
3580   if (!this.checkedZeroWidth && measure.clientHeight > 0) {
3581     if (sWidth == 0) { this.zeroWidthHack(); }
3582     this.checkedZeroWidth = true;
3583   }
3584
3585   return {right: needsV ? sWidth : 0, bottom: needsH ? sWidth : 0}
3586 };
3587
3588 NativeScrollbars.prototype.setScrollLeft = function (pos) {
3589   if (this.horiz.scrollLeft != pos) { this.horiz.scrollLeft = pos; }
3590   if (this.disableHoriz) { this.enableZeroWidthBar(this.horiz, this.disableHoriz, "horiz"); }
3591 };
3592
3593 NativeScrollbars.prototype.setScrollTop = function (pos) {
3594   if (this.vert.scrollTop != pos) { this.vert.scrollTop = pos; }
3595   if (this.disableVert) { this.enableZeroWidthBar(this.vert, this.disableVert, "vert"); }
3596 };
3597
3598 NativeScrollbars.prototype.zeroWidthHack = function () {
3599   var w = mac && !mac_geMountainLion ? "12px" : "18px";
3600   this.horiz.style.height = this.vert.style.width = w;
3601   this.horiz.style.pointerEvents = this.vert.style.pointerEvents = "none";
3602   this.disableHoriz = new Delayed;
3603   this.disableVert = new Delayed;
3604 };
3605
3606 NativeScrollbars.prototype.enableZeroWidthBar = function (bar, delay, type) {
3607   bar.style.pointerEvents = "auto";
3608   function maybeDisable() {
3609     // To find out whether the scrollbar is still visible, we
3610     // check whether the element under the pixel in the bottom
3611     // right corner of the scrollbar box is the scrollbar box
3612     // itself (when the bar is still visible) or its filler child
3613     // (when the bar is hidden). If it is still visible, we keep
3614     // it enabled, if it's hidden, we disable pointer events.
3615     var box = bar.getBoundingClientRect();
3616     var elt$$1 = type == "vert" ? document.elementFromPoint(box.right - 1, (box.top + box.bottom) / 2)
3617         : document.elementFromPoint((box.right + box.left) / 2, box.bottom - 1);
3618     if (elt$$1 != bar) { bar.style.pointerEvents = "none"; }
3619     else { delay.set(1000, maybeDisable); }
3620   }
3621   delay.set(1000, maybeDisable);
3622 };
3623
3624 NativeScrollbars.prototype.clear = function () {
3625   var parent = this.horiz.parentNode;
3626   parent.removeChild(this.horiz);
3627   parent.removeChild(this.vert);
3628 };
3629
3630 var NullScrollbars = function () {};
3631
3632 NullScrollbars.prototype.update = function () { return {bottom: 0, right: 0} };
3633 NullScrollbars.prototype.setScrollLeft = function () {};
3634 NullScrollbars.prototype.setScrollTop = function () {};
3635 NullScrollbars.prototype.clear = function () {};
3636
3637 function updateScrollbars(cm, measure) {
3638   if (!measure) { measure = measureForScrollbars(cm); }
3639   var startWidth = cm.display.barWidth, startHeight = cm.display.barHeight;
3640   updateScrollbarsInner(cm, measure);
3641   for (var i = 0; i < 4 && startWidth != cm.display.barWidth || startHeight != cm.display.barHeight; i++) {
3642     if (startWidth != cm.display.barWidth && cm.options.lineWrapping)
3643       { updateHeightsInViewport(cm); }
3644     updateScrollbarsInner(cm, measureForScrollbars(cm));
3645     startWidth = cm.display.barWidth; startHeight = cm.display.barHeight;
3646   }
3647 }
3648
3649 // Re-synchronize the fake scrollbars with the actual size of the
3650 // content.
3651 function updateScrollbarsInner(cm, measure) {
3652   var d = cm.display;
3653   var sizes = d.scrollbars.update(measure);
3654
3655   d.sizer.style.paddingRight = (d.barWidth = sizes.right) + "px";
3656   d.sizer.style.paddingBottom = (d.barHeight = sizes.bottom) + "px";
3657   d.heightForcer.style.borderBottom = sizes.bottom + "px solid transparent";
3658
3659   if (sizes.right && sizes.bottom) {
3660     d.scrollbarFiller.style.display = "block";
3661     d.scrollbarFiller.style.height = sizes.bottom + "px";
3662     d.scrollbarFiller.style.width = sizes.right + "px";
3663   } else { d.scrollbarFiller.style.display = ""; }
3664   if (sizes.bottom && cm.options.coverGutterNextToScrollbar && cm.options.fixedGutter) {
3665     d.gutterFiller.style.display = "block";
3666     d.gutterFiller.style.height = sizes.bottom + "px";
3667     d.gutterFiller.style.width = measure.gutterWidth + "px";
3668   } else { d.gutterFiller.style.display = ""; }
3669 }
3670
3671 var scrollbarModel = {"native": NativeScrollbars, "null": NullScrollbars};
3672
3673 function initScrollbars(cm) {
3674   if (cm.display.scrollbars) {
3675     cm.display.scrollbars.clear();
3676     if (cm.display.scrollbars.addClass)
3677       { rmClass(cm.display.wrapper, cm.display.scrollbars.addClass); }
3678   }
3679
3680   cm.display.scrollbars = new scrollbarModel[cm.options.scrollbarStyle](function (node) {
3681     cm.display.wrapper.insertBefore(node, cm.display.scrollbarFiller);
3682     // Prevent clicks in the scrollbars from killing focus
3683     on(node, "mousedown", function () {
3684       if (cm.state.focused) { setTimeout(function () { return cm.display.input.focus(); }, 0); }
3685     });
3686     node.setAttribute("cm-not-content", "true");
3687   }, function (pos, axis) {
3688     if (axis == "horizontal") { setScrollLeft(cm, pos); }
3689     else { updateScrollTop(cm, pos); }
3690   }, cm);
3691   if (cm.display.scrollbars.addClass)
3692     { addClass(cm.display.wrapper, cm.display.scrollbars.addClass); }
3693 }
3694
3695 // Operations are used to wrap a series of changes to the editor
3696 // state in such a way that each change won't have to update the
3697 // cursor and display (which would be awkward, slow, and
3698 // error-prone). Instead, display updates are batched and then all
3699 // combined and executed at once.
3700
3701 var nextOpId = 0;
3702 // Start a new operation.
3703 function startOperation(cm) {
3704   cm.curOp = {
3705     cm: cm,
3706     viewChanged: false,      // Flag that indicates that lines might need to be redrawn
3707     startHeight: cm.doc.height, // Used to detect need to update scrollbar
3708     forceUpdate: false,      // Used to force a redraw
3709     updateInput: null,       // Whether to reset the input textarea
3710     typing: false,           // Whether this reset should be careful to leave existing text (for compositing)
3711     changeObjs: null,        // Accumulated changes, for firing change events
3712     cursorActivityHandlers: null, // Set of handlers to fire cursorActivity on
3713     cursorActivityCalled: 0, // Tracks which cursorActivity handlers have been called already
3714     selectionChanged: false, // Whether the selection needs to be redrawn
3715     updateMaxLine: false,    // Set when the widest line needs to be determined anew
3716     scrollLeft: null, scrollTop: null, // Intermediate scroll position, not pushed to DOM yet
3717     scrollToPos: null,       // Used to scroll to a specific position
3718     focus: false,
3719     id: ++nextOpId           // Unique ID
3720   };
3721   pushOperation(cm.curOp);
3722 }
3723
3724 // Finish an operation, updating the display and signalling delayed events
3725 function endOperation(cm) {
3726   var op = cm.curOp;
3727   finishOperation(op, function (group) {
3728     for (var i = 0; i < group.ops.length; i++)
3729       { group.ops[i].cm.curOp = null; }
3730     endOperations(group);
3731   });
3732 }
3733
3734 // The DOM updates done when an operation finishes are batched so
3735 // that the minimum number of relayouts are required.
3736 function endOperations(group) {
3737   var ops = group.ops;
3738   for (var i = 0; i < ops.length; i++) // Read DOM
3739     { endOperation_R1(ops[i]); }
3740   for (var i$1 = 0; i$1 < ops.length; i$1++) // Write DOM (maybe)
3741     { endOperation_W1(ops[i$1]); }
3742   for (var i$2 = 0; i$2 < ops.length; i$2++) // Read DOM
3743     { endOperation_R2(ops[i$2]); }
3744   for (var i$3 = 0; i$3 < ops.length; i$3++) // Write DOM (maybe)
3745     { endOperation_W2(ops[i$3]); }
3746   for (var i$4 = 0; i$4 < ops.length; i$4++) // Read DOM
3747     { endOperation_finish(ops[i$4]); }
3748 }
3749
3750 function endOperation_R1(op) {
3751   var cm = op.cm, display = cm.display;
3752   maybeClipScrollbars(cm);
3753   if (op.updateMaxLine) { findMaxLine(cm); }
3754
3755   op.mustUpdate = op.viewChanged || op.forceUpdate || op.scrollTop != null ||
3756     op.scrollToPos && (op.scrollToPos.from.line < display.viewFrom ||
3757                        op.scrollToPos.to.line >= display.viewTo) ||
3758     display.maxLineChanged && cm.options.lineWrapping;
3759   op.update = op.mustUpdate &&
3760     new DisplayUpdate(cm, op.mustUpdate && {top: op.scrollTop, ensure: op.scrollToPos}, op.forceUpdate);
3761 }
3762
3763 function endOperation_W1(op) {
3764   op.updatedDisplay = op.mustUpdate && updateDisplayIfNeeded(op.cm, op.update);
3765 }
3766
3767 function endOperation_R2(op) {
3768   var cm = op.cm, display = cm.display;
3769   if (op.updatedDisplay) { updateHeightsInViewport(cm); }
3770
3771   op.barMeasure = measureForScrollbars(cm);
3772
3773   // If the max line changed since it was last measured, measure it,
3774   // and ensure the document's width matches it.
3775   // updateDisplay_W2 will use these properties to do the actual resizing
3776   if (display.maxLineChanged && !cm.options.lineWrapping) {
3777     op.adjustWidthTo = measureChar(cm, display.maxLine, display.maxLine.text.length).left + 3;
3778     cm.display.sizerWidth = op.adjustWidthTo;
3779     op.barMeasure.scrollWidth =
3780       Math.max(display.scroller.clientWidth, display.sizer.offsetLeft + op.adjustWidthTo + scrollGap(cm) + cm.display.barWidth);
3781     op.maxScrollLeft = Math.max(0, display.sizer.offsetLeft + op.adjustWidthTo - displayWidth(cm));
3782   }
3783
3784   if (op.updatedDisplay || op.selectionChanged)
3785     { op.preparedSelection = display.input.prepareSelection(op.focus); }
3786 }
3787
3788 function endOperation_W2(op) {
3789   var cm = op.cm;
3790
3791   if (op.adjustWidthTo != null) {
3792     cm.display.sizer.style.minWidth = op.adjustWidthTo + "px";
3793     if (op.maxScrollLeft < cm.doc.scrollLeft)
3794       { setScrollLeft(cm, Math.min(cm.display.scroller.scrollLeft, op.maxScrollLeft), true); }
3795     cm.display.maxLineChanged = false;
3796   }
3797
3798   var takeFocus = op.focus && op.focus == activeElt() && (!document.hasFocus || document.hasFocus());
3799   if (op.preparedSelection)
3800     { cm.display.input.showSelection(op.preparedSelection, takeFocus); }
3801   if (op.updatedDisplay || op.startHeight != cm.doc.height)
3802     { updateScrollbars(cm, op.barMeasure); }
3803   if (op.updatedDisplay)
3804     { setDocumentHeight(cm, op.barMeasure); }
3805
3806   if (op.selectionChanged) { restartBlink(cm); }
3807
3808   if (cm.state.focused && op.updateInput)
3809     { cm.display.input.reset(op.typing); }
3810   if (takeFocus) { ensureFocus(op.cm); }
3811 }
3812
3813 function endOperation_finish(op) {
3814   var cm = op.cm, display = cm.display, doc = cm.doc;
3815
3816   if (op.updatedDisplay) { postUpdateDisplay(cm, op.update); }
3817
3818   // Abort mouse wheel delta measurement, when scrolling explicitly
3819   if (display.wheelStartX != null && (op.scrollTop != null || op.scrollLeft != null || op.scrollToPos))
3820     { display.wheelStartX = display.wheelStartY = null; }
3821
3822   // Propagate the scroll position to the actual DOM scroller
3823   if (op.scrollTop != null) { setScrollTop(cm, op.scrollTop, op.forceScroll); }
3824
3825   if (op.scrollLeft != null) { setScrollLeft(cm, op.scrollLeft, true, true); }
3826   // If we need to scroll a specific position into view, do so.
3827   if (op.scrollToPos) {
3828     var rect = scrollPosIntoView(cm, clipPos(doc, op.scrollToPos.from),
3829                                  clipPos(doc, op.scrollToPos.to), op.scrollToPos.margin);
3830     maybeScrollWindow(cm, rect);
3831   }
3832
3833   // Fire events for markers that are hidden/unidden by editing or
3834   // undoing
3835   var hidden = op.maybeHiddenMarkers, unhidden = op.maybeUnhiddenMarkers;
3836   if (hidden) { for (var i = 0; i < hidden.length; ++i)
3837     { if (!hidden[i].lines.length) { signal(hidden[i], "hide"); } } }
3838   if (unhidden) { for (var i$1 = 0; i$1 < unhidden.length; ++i$1)
3839     { if (unhidden[i$1].lines.length) { signal(unhidden[i$1], "unhide"); } } }
3840
3841   if (display.wrapper.offsetHeight)
3842     { doc.scrollTop = cm.display.scroller.scrollTop; }
3843
3844   // Fire change events, and delayed event handlers
3845   if (op.changeObjs)
3846     { signal(cm, "changes", cm, op.changeObjs); }
3847   if (op.update)
3848     { op.update.finish(); }
3849 }
3850
3851 // Run the given function in an operation
3852 function runInOp(cm, f) {
3853   if (cm.curOp) { return f() }
3854   startOperation(cm);
3855   try { return f() }
3856   finally { endOperation(cm); }
3857 }
3858 // Wraps a function in an operation. Returns the wrapped function.
3859 function operation(cm, f) {
3860   return function() {
3861     if (cm.curOp) { return f.apply(cm, arguments) }
3862     startOperation(cm);
3863     try { return f.apply(cm, arguments) }
3864     finally { endOperation(cm); }
3865   }
3866 }
3867 // Used to add methods to editor and doc instances, wrapping them in
3868 // operations.
3869 function methodOp(f) {
3870   return function() {
3871     if (this.curOp) { return f.apply(this, arguments) }
3872     startOperation(this);
3873     try { return f.apply(this, arguments) }
3874     finally { endOperation(this); }
3875   }
3876 }
3877 function docMethodOp(f) {
3878   return function() {
3879     var cm = this.cm;
3880     if (!cm || cm.curOp) { return f.apply(this, arguments) }
3881     startOperation(cm);
3882     try { return f.apply(this, arguments) }
3883     finally { endOperation(cm); }
3884   }
3885 }
3886
3887 // Updates the display.view data structure for a given change to the
3888 // document. From and to are in pre-change coordinates. Lendiff is
3889 // the amount of lines added or subtracted by the change. This is
3890 // used for changes that span multiple lines, or change the way
3891 // lines are divided into visual lines. regLineChange (below)
3892 // registers single-line changes.
3893 function regChange(cm, from, to, lendiff) {
3894   if (from == null) { from = cm.doc.first; }
3895   if (to == null) { to = cm.doc.first + cm.doc.size; }
3896   if (!lendiff) { lendiff = 0; }
3897
3898   var display = cm.display;
3899   if (lendiff && to < display.viewTo &&
3900       (display.updateLineNumbers == null || display.updateLineNumbers > from))
3901     { display.updateLineNumbers = from; }
3902
3903   cm.curOp.viewChanged = true;
3904
3905   if (from >= display.viewTo) { // Change after
3906     if (sawCollapsedSpans && visualLineNo(cm.doc, from) < display.viewTo)
3907       { resetView(cm); }
3908   } else if (to <= display.viewFrom) { // Change before
3909     if (sawCollapsedSpans && visualLineEndNo(cm.doc, to + lendiff) > display.viewFrom) {
3910       resetView(cm);
3911     } else {
3912       display.viewFrom += lendiff;
3913       display.viewTo += lendiff;
3914     }
3915   } else if (from <= display.viewFrom && to >= display.viewTo) { // Full overlap
3916     resetView(cm);
3917   } else if (from <= display.viewFrom) { // Top overlap
3918     var cut = viewCuttingPoint(cm, to, to + lendiff, 1);
3919     if (cut) {
3920       display.view = display.view.slice(cut.index);
3921       display.viewFrom = cut.lineN;
3922       display.viewTo += lendiff;
3923     } else {
3924       resetView(cm);
3925     }
3926   } else if (to >= display.viewTo) { // Bottom overlap
3927     var cut$1 = viewCuttingPoint(cm, from, from, -1);
3928     if (cut$1) {
3929       display.view = display.view.slice(0, cut$1.index);
3930       display.viewTo = cut$1.lineN;
3931     } else {
3932       resetView(cm);
3933     }
3934   } else { // Gap in the middle
3935     var cutTop = viewCuttingPoint(cm, from, from, -1);
3936     var cutBot = viewCuttingPoint(cm, to, to + lendiff, 1);
3937     if (cutTop && cutBot) {
3938       display.view = display.view.slice(0, cutTop.index)
3939         .concat(buildViewArray(cm, cutTop.lineN, cutBot.lineN))
3940         .concat(display.view.slice(cutBot.index));
3941       display.viewTo += lendiff;
3942     } else {
3943       resetView(cm);
3944     }
3945   }
3946
3947   var ext = display.externalMeasured;
3948   if (ext) {
3949     if (to < ext.lineN)
3950       { ext.lineN += lendiff; }
3951     else if (from < ext.lineN + ext.size)
3952       { display.externalMeasured = null; }
3953   }
3954 }
3955
3956 // Register a change to a single line. Type must be one of "text",
3957 // "gutter", "class", "widget"
3958 function regLineChange(cm, line, type) {
3959   cm.curOp.viewChanged = true;
3960   var display = cm.display, ext = cm.display.externalMeasured;
3961   if (ext && line >= ext.lineN && line < ext.lineN + ext.size)
3962     { display.externalMeasured = null; }
3963
3964   if (line < display.viewFrom || line >= display.viewTo) { return }
3965   var lineView = display.view[findViewIndex(cm, line)];
3966   if (lineView.node == null) { return }
3967   var arr = lineView.changes || (lineView.changes = []);
3968   if (indexOf(arr, type) == -1) { arr.push(type); }
3969 }
3970
3971 // Clear the view.
3972 function resetView(cm) {
3973   cm.display.viewFrom = cm.display.viewTo = cm.doc.first;
3974   cm.display.view = [];
3975   cm.display.viewOffset = 0;
3976 }
3977
3978 function viewCuttingPoint(cm, oldN, newN, dir) {
3979   var index = findViewIndex(cm, oldN), diff, view = cm.display.view;
3980   if (!sawCollapsedSpans || newN == cm.doc.first + cm.doc.size)
3981     { return {index: index, lineN: newN} }
3982   var n = cm.display.viewFrom;
3983   for (var i = 0; i < index; i++)
3984     { n += view[i].size; }
3985   if (n != oldN) {
3986     if (dir > 0) {
3987       if (index == view.length - 1) { return null }
3988       diff = (n + view[index].size) - oldN;
3989       index++;
3990     } else {
3991       diff = n - oldN;
3992     }
3993     oldN += diff; newN += diff;
3994   }
3995   while (visualLineNo(cm.doc, newN) != newN) {
3996     if (index == (dir < 0 ? 0 : view.length - 1)) { return null }
3997     newN += dir * view[index - (dir < 0 ? 1 : 0)].size;
3998     index += dir;
3999   }
4000   return {index: index, lineN: newN}
4001 }
4002
4003 // Force the view to cover a given range, adding empty view element
4004 // or clipping off existing ones as needed.
4005 function adjustView(cm, from, to) {
4006   var display = cm.display, view = display.view;
4007   if (view.length == 0 || from >= display.viewTo || to <= display.viewFrom) {
4008     display.view = buildViewArray(cm, from, to);
4009     display.viewFrom = from;
4010   } else {
4011     if (display.viewFrom > from)
4012       { display.view = buildViewArray(cm, from, display.viewFrom).concat(display.view); }
4013     else if (display.viewFrom < from)
4014       { display.view = display.view.slice(findViewIndex(cm, from)); }
4015     display.viewFrom = from;
4016     if (display.viewTo < to)
4017       { display.view = display.view.concat(buildViewArray(cm, display.viewTo, to)); }
4018     else if (display.viewTo > to)
4019       { display.view = display.view.slice(0, findViewIndex(cm, to)); }
4020   }
4021   display.viewTo = to;
4022 }
4023
4024 // Count the number of lines in the view whose DOM representation is
4025 // out of date (or nonexistent).
4026 function countDirtyView(cm) {
4027   var view = cm.display.view, dirty = 0;
4028   for (var i = 0; i < view.length; i++) {
4029     var lineView = view[i];
4030     if (!lineView.hidden && (!lineView.node || lineView.changes)) { ++dirty; }
4031   }
4032   return dirty
4033 }
4034
4035 // HIGHLIGHT WORKER
4036
4037 function startWorker(cm, time) {
4038   if (cm.doc.highlightFrontier < cm.display.viewTo)
4039     { cm.state.highlight.set(time, bind(highlightWorker, cm)); }
4040 }
4041
4042 function highlightWorker(cm) {
4043   var doc = cm.doc;
4044   if (doc.highlightFrontier >= cm.display.viewTo) { return }
4045   var end = +new Date + cm.options.workTime;
4046   var context = getContextBefore(cm, doc.highlightFrontier);
4047   var changedLines = [];
4048
4049   doc.iter(context.line, Math.min(doc.first + doc.size, cm.display.viewTo + 500), function (line) {
4050     if (context.line >= cm.display.viewFrom) { // Visible
4051       var oldStyles = line.styles;
4052       var resetState = line.text.length > cm.options.maxHighlightLength ? copyState(doc.mode, context.state) : null;
4053       var highlighted = highlightLine(cm, line, context, true);
4054       if (resetState) { context.state = resetState; }
4055       line.styles = highlighted.styles;
4056       var oldCls = line.styleClasses, newCls = highlighted.classes;
4057       if (newCls) { line.styleClasses = newCls; }
4058       else if (oldCls) { line.styleClasses = null; }
4059       var ischange = !oldStyles || oldStyles.length != line.styles.length ||
4060         oldCls != newCls && (!oldCls || !newCls || oldCls.bgClass != newCls.bgClass || oldCls.textClass != newCls.textClass);
4061       for (var i = 0; !ischange && i < oldStyles.length; ++i) { ischange = oldStyles[i] != line.styles[i]; }
4062       if (ischange) { changedLines.push(context.line); }
4063       line.stateAfter = context.save();
4064       context.nextLine();
4065     } else {
4066       if (line.text.length <= cm.options.maxHighlightLength)
4067         { processLine(cm, line.text, context); }
4068       line.stateAfter = context.line % 5 == 0 ? context.save() : null;
4069       context.nextLine();
4070     }
4071     if (+new Date > end) {
4072       startWorker(cm, cm.options.workDelay);
4073       return true
4074     }
4075   });
4076   doc.highlightFrontier = context.line;
4077   doc.modeFrontier = Math.max(doc.modeFrontier, context.line);
4078   if (changedLines.length) { runInOp(cm, function () {
4079     for (var i = 0; i < changedLines.length; i++)
4080       { regLineChange(cm, changedLines[i], "text"); }
4081   }); }
4082 }
4083
4084 // DISPLAY DRAWING
4085
4086 var DisplayUpdate = function(cm, viewport, force) {
4087   var display = cm.display;
4088
4089   this.viewport = viewport;
4090   // Store some values that we'll need later (but don't want to force a relayout for)
4091   this.visible = visibleLines(display, cm.doc, viewport);
4092   this.editorIsHidden = !display.wrapper.offsetWidth;
4093   this.wrapperHeight = display.wrapper.clientHeight;
4094   this.wrapperWidth = display.wrapper.clientWidth;
4095   this.oldDisplayWidth = displayWidth(cm);
4096   this.force = force;
4097   this.dims = getDimensions(cm);
4098   this.events = [];
4099 };
4100
4101 DisplayUpdate.prototype.signal = function (emitter, type) {
4102   if (hasHandler(emitter, type))
4103     { this.events.push(arguments); }
4104 };
4105 DisplayUpdate.prototype.finish = function () {
4106     var this$1 = this;
4107
4108   for (var i = 0; i < this.events.length; i++)
4109     { signal.apply(null, this$1.events[i]); }
4110 };
4111
4112 function maybeClipScrollbars(cm) {
4113   var display = cm.display;
4114   if (!display.scrollbarsClipped && display.scroller.offsetWidth) {
4115     display.nativeBarWidth = display.scroller.offsetWidth - display.scroller.clientWidth;
4116     display.heightForcer.style.height = scrollGap(cm) + "px";
4117     display.sizer.style.marginBottom = -display.nativeBarWidth + "px";
4118     display.sizer.style.borderRightWidth = scrollGap(cm) + "px";
4119     display.scrollbarsClipped = true;
4120   }
4121 }
4122
4123 function selectionSnapshot(cm) {
4124   if (cm.hasFocus()) { return null }
4125   var active = activeElt();
4126   if (!active || !contains(cm.display.lineDiv, active)) { return null }
4127   var result = {activeElt: active};
4128   if (window.getSelection) {
4129     var sel = window.getSelection();
4130     if (sel.anchorNode && sel.extend && contains(cm.display.lineDiv, sel.anchorNode)) {
4131       result.anchorNode = sel.anchorNode;
4132       result.anchorOffset = sel.anchorOffset;
4133       result.focusNode = sel.focusNode;
4134       result.focusOffset = sel.focusOffset;
4135     }
4136   }
4137   return result
4138 }
4139
4140 function restoreSelection(snapshot) {
4141   if (!snapshot || !snapshot.activeElt || snapshot.activeElt == activeElt()) { return }
4142   snapshot.activeElt.focus();
4143   if (snapshot.anchorNode && contains(document.body, snapshot.anchorNode) && contains(document.body, snapshot.focusNode)) {
4144     var sel = window.getSelection(), range$$1 = document.createRange();
4145     range$$1.setEnd(snapshot.anchorNode, snapshot.anchorOffset);
4146     range$$1.collapse(false);
4147     sel.removeAllRanges();
4148     sel.addRange(range$$1);
4149     sel.extend(snapshot.focusNode, snapshot.focusOffset);
4150   }
4151 }
4152
4153 // Does the actual updating of the line display. Bails out
4154 // (returning false) when there is nothing to be done and forced is
4155 // false.
4156 function updateDisplayIfNeeded(cm, update) {
4157   var display = cm.display, doc = cm.doc;
4158
4159   if (update.editorIsHidden) {
4160     resetView(cm);
4161     return false
4162   }
4163
4164   // Bail out if the visible area is already rendered and nothing changed.
4165   if (!update.force &&
4166       update.visible.from >= display.viewFrom && update.visible.to <= display.viewTo &&
4167       (display.updateLineNumbers == null || display.updateLineNumbers >= display.viewTo) &&
4168       display.renderedView == display.view && countDirtyView(cm) == 0)
4169     { return false }
4170
4171   if (maybeUpdateLineNumberWidth(cm)) {
4172     resetView(cm);
4173     update.dims = getDimensions(cm);
4174   }
4175
4176   // Compute a suitable new viewport (from & to)
4177   var end = doc.first + doc.size;
4178   var from = Math.max(update.visible.from - cm.options.viewportMargin, doc.first);
4179   var to = Math.min(end, update.visible.to + cm.options.viewportMargin);
4180   if (display.viewFrom < from && from - display.viewFrom < 20) { from = Math.max(doc.first, display.viewFrom); }
4181   if (display.viewTo > to && display.viewTo - to < 20) { to = Math.min(end, display.viewTo); }
4182   if (sawCollapsedSpans) {
4183     from = visualLineNo(cm.doc, from);
4184     to = visualLineEndNo(cm.doc, to);
4185   }
4186
4187   var different = from != display.viewFrom || to != display.viewTo ||
4188     display.lastWrapHeight != update.wrapperHeight || display.lastWrapWidth != update.wrapperWidth;
4189   adjustView(cm, from, to);
4190
4191   display.viewOffset = heightAtLine(getLine(cm.doc, display.viewFrom));
4192   // Position the mover div to align with the current scroll position
4193   cm.display.mover.style.top = display.viewOffset + "px";
4194
4195   var toUpdate = countDirtyView(cm);
4196   if (!different && toUpdate == 0 && !update.force && display.renderedView == display.view &&
4197       (display.updateLineNumbers == null || display.updateLineNumbers >= display.viewTo))
4198     { return false }
4199
4200   // For big changes, we hide the enclosing element during the
4201   // update, since that speeds up the operations on most browsers.
4202   var selSnapshot = selectionSnapshot(cm);
4203   if (toUpdate > 4) { display.lineDiv.style.display = "none"; }
4204   patchDisplay(cm, display.updateLineNumbers, update.dims);
4205   if (toUpdate > 4) { display.lineDiv.style.display = ""; }
4206   display.renderedView = display.view;
4207   // There might have been a widget with a focused element that got
4208   // hidden or updated, if so re-focus it.
4209   restoreSelection(selSnapshot);
4210
4211   // Prevent selection and cursors from interfering with the scroll
4212   // width and height.
4213   removeChildren(display.cursorDiv);
4214   removeChildren(display.selectionDiv);
4215   display.gutters.style.height = display.sizer.style.minHeight = 0;
4216
4217   if (different) {
4218     display.lastWrapHeight = update.wrapperHeight;
4219     display.lastWrapWidth = update.wrapperWidth;
4220     startWorker(cm, 400);
4221   }
4222
4223   display.updateLineNumbers = null;
4224
4225   return true
4226 }
4227
4228 function postUpdateDisplay(cm, update) {
4229   var viewport = update.viewport;
4230
4231   for (var first = true;; first = false) {
4232     if (!first || !cm.options.lineWrapping || update.oldDisplayWidth == displayWidth(cm)) {
4233       // Clip forced viewport to actual scrollable area.
4234       if (viewport && viewport.top != null)
4235         { viewport = {top: Math.min(cm.doc.height + paddingVert(cm.display) - displayHeight(cm), viewport.top)}; }
4236       // Updated line heights might result in the drawn area not
4237       // actually covering the viewport. Keep looping until it does.
4238       update.visible = visibleLines(cm.display, cm.doc, viewport);
4239       if (update.visible.from >= cm.display.viewFrom && update.visible.to <= cm.display.viewTo)
4240         { break }
4241     }
4242     if (!updateDisplayIfNeeded(cm, update)) { break }
4243     updateHeightsInViewport(cm);
4244     var barMeasure = measureForScrollbars(cm);
4245     updateSelection(cm);
4246     updateScrollbars(cm, barMeasure);
4247     setDocumentHeight(cm, barMeasure);
4248     update.force = false;
4249   }
4250
4251   update.signal(cm, "update", cm);
4252   if (cm.display.viewFrom != cm.display.reportedViewFrom || cm.display.viewTo != cm.display.reportedViewTo) {
4253     update.signal(cm, "viewportChange", cm, cm.display.viewFrom, cm.display.viewTo);
4254     cm.display.reportedViewFrom = cm.display.viewFrom; cm.display.reportedViewTo = cm.display.viewTo;
4255   }
4256 }
4257
4258 function updateDisplaySimple(cm, viewport) {
4259   var update = new DisplayUpdate(cm, viewport);
4260   if (updateDisplayIfNeeded(cm, update)) {
4261     updateHeightsInViewport(cm);
4262     postUpdateDisplay(cm, update);
4263     var barMeasure = measureForScrollbars(cm);
4264     updateSelection(cm);
4265     updateScrollbars(cm, barMeasure);
4266     setDocumentHeight(cm, barMeasure);
4267     update.finish();
4268   }
4269 }
4270
4271 // Sync the actual display DOM structure with display.view, removing
4272 // nodes for lines that are no longer in view, and creating the ones
4273 // that are not there yet, and updating the ones that are out of
4274 // date.
4275 function patchDisplay(cm, updateNumbersFrom, dims) {
4276   var display = cm.display, lineNumbers = cm.options.lineNumbers;
4277   var container = display.lineDiv, cur = container.firstChild;
4278
4279   function rm(node) {
4280     var next = node.nextSibling;
4281     // Works around a throw-scroll bug in OS X Webkit
4282     if (webkit && mac && cm.display.currentWheelTarget == node)
4283       { node.style.display = "none"; }
4284     else
4285       { node.parentNode.removeChild(node); }
4286     return next
4287   }
4288
4289   var view = display.view, lineN = display.viewFrom;
4290   // Loop over the elements in the view, syncing cur (the DOM nodes
4291   // in display.lineDiv) with the view as we go.
4292   for (var i = 0; i < view.length; i++) {
4293     var lineView = view[i];
4294     if (lineView.hidden) {
4295     } else if (!lineView.node || lineView.node.parentNode != container) { // Not drawn yet
4296       var node = buildLineElement(cm, lineView, lineN, dims);
4297       container.insertBefore(node, cur);
4298     } else { // Already drawn
4299       while (cur != lineView.node) { cur = rm(cur); }
4300       var updateNumber = lineNumbers && updateNumbersFrom != null &&
4301         updateNumbersFrom <= lineN && lineView.lineNumber;
4302       if (lineView.changes) {
4303         if (indexOf(lineView.changes, "gutter") > -1) { updateNumber = false; }
4304         updateLineForChanges(cm, lineView, lineN, dims);
4305       }
4306       if (updateNumber) {
4307         removeChildren(lineView.lineNumber);
4308         lineView.lineNumber.appendChild(document.createTextNode(lineNumberFor(cm.options, lineN)));
4309       }
4310       cur = lineView.node.nextSibling;
4311     }
4312     lineN += lineView.size;
4313   }
4314   while (cur) { cur = rm(cur); }
4315 }
4316
4317 function updateGutterSpace(cm) {
4318   var width = cm.display.gutters.offsetWidth;
4319   cm.display.sizer.style.marginLeft = width + "px";
4320 }
4321
4322 function setDocumentHeight(cm, measure) {
4323   cm.display.sizer.style.minHeight = measure.docHeight + "px";
4324   cm.display.heightForcer.style.top = measure.docHeight + "px";
4325   cm.display.gutters.style.height = (measure.docHeight + cm.display.barHeight + scrollGap(cm)) + "px";
4326 }
4327
4328 // Rebuild the gutter elements, ensure the margin to the left of the
4329 // code matches their width.
4330 function updateGutters(cm) {
4331   var gutters = cm.display.gutters, specs = cm.options.gutters;
4332   removeChildren(gutters);
4333   var i = 0;
4334   for (; i < specs.length; ++i) {
4335     var gutterClass = specs[i];
4336     var gElt = gutters.appendChild(elt("div", null, "CodeMirror-gutter " + gutterClass));
4337     if (gutterClass == "CodeMirror-linenumbers") {
4338       cm.display.lineGutter = gElt;
4339       gElt.style.width = (cm.display.lineNumWidth || 1) + "px";
4340     }
4341   }
4342   gutters.style.display = i ? "" : "none";
4343   updateGutterSpace(cm);
4344 }
4345
4346 // Make sure the gutters options contains the element
4347 // "CodeMirror-linenumbers" when the lineNumbers option is true.
4348 function setGuttersForLineNumbers(options) {
4349   var found = indexOf(options.gutters, "CodeMirror-linenumbers");
4350   if (found == -1 && options.lineNumbers) {
4351     options.gutters = options.gutters.concat(["CodeMirror-linenumbers"]);
4352   } else if (found > -1 && !options.lineNumbers) {
4353     options.gutters = options.gutters.slice(0);
4354     options.gutters.splice(found, 1);
4355   }
4356 }
4357
4358 // Since the delta values reported on mouse wheel events are
4359 // unstandardized between browsers and even browser versions, and
4360 // generally horribly unpredictable, this code starts by measuring
4361 // the scroll effect that the first few mouse wheel events have,
4362 // and, from that, detects the way it can convert deltas to pixel
4363 // offsets afterwards.
4364 //
4365 // The reason we want to know the amount a wheel event will scroll
4366 // is that it gives us a chance to update the display before the
4367 // actual scrolling happens, reducing flickering.
4368
4369 var wheelSamples = 0;
4370 var wheelPixelsPerUnit = null;
4371 // Fill in a browser-detected starting value on browsers where we
4372 // know one. These don't have to be accurate -- the result of them
4373 // being wrong would just be a slight flicker on the first wheel
4374 // scroll (if it is large enough).
4375 if (ie) { wheelPixelsPerUnit = -.53; }
4376 else if (gecko) { wheelPixelsPerUnit = 15; }
4377 else if (chrome) { wheelPixelsPerUnit = -.7; }
4378 else if (safari) { wheelPixelsPerUnit = -1/3; }
4379
4380 function wheelEventDelta(e) {
4381   var dx = e.wheelDeltaX, dy = e.wheelDeltaY;
4382   if (dx == null && e.detail && e.axis == e.HORIZONTAL_AXIS) { dx = e.detail; }
4383   if (dy == null && e.detail && e.axis == e.VERTICAL_AXIS) { dy = e.detail; }
4384   else if (dy == null) { dy = e.wheelDelta; }
4385   return {x: dx, y: dy}
4386 }
4387 function wheelEventPixels(e) {
4388   var delta = wheelEventDelta(e);
4389   delta.x *= wheelPixelsPerUnit;
4390   delta.y *= wheelPixelsPerUnit;
4391   return delta
4392 }
4393
4394 function onScrollWheel(cm, e) {
4395   var delta = wheelEventDelta(e), dx = delta.x, dy = delta.y;
4396
4397   var display = cm.display, scroll = display.scroller;
4398   // Quit if there's nothing to scroll here
4399   var canScrollX = scroll.scrollWidth > scroll.clientWidth;
4400   var canScrollY = scroll.scrollHeight > scroll.clientHeight;
4401   if (!(dx && canScrollX || dy && canScrollY)) { return }
4402
4403   // Webkit browsers on OS X abort momentum scrolls when the target
4404   // of the scroll event is removed from the scrollable element.
4405   // This hack (see related code in patchDisplay) makes sure the
4406   // element is kept around.
4407   if (dy && mac && webkit) {
4408     outer: for (var cur = e.target, view = display.view; cur != scroll; cur = cur.parentNode) {
4409       for (var i = 0; i < view.length; i++) {
4410         if (view[i].node == cur) {
4411           cm.display.currentWheelTarget = cur;
4412           break outer
4413         }
4414       }
4415     }
4416   }
4417
4418   // On some browsers, horizontal scrolling will cause redraws to
4419   // happen before the gutter has been realigned, causing it to
4420   // wriggle around in a most unseemly way. When we have an
4421   // estimated pixels/delta value, we just handle horizontal
4422   // scrolling entirely here. It'll be slightly off from native, but
4423   // better than glitching out.
4424   if (dx && !gecko && !presto && wheelPixelsPerUnit != null) {
4425     if (dy && canScrollY)
4426       { updateScrollTop(cm, Math.max(0, scroll.scrollTop + dy * wheelPixelsPerUnit)); }
4427     setScrollLeft(cm, Math.max(0, scroll.scrollLeft + dx * wheelPixelsPerUnit));
4428     // Only prevent default scrolling if vertical scrolling is
4429     // actually possible. Otherwise, it causes vertical scroll
4430     // jitter on OSX trackpads when deltaX is small and deltaY
4431     // is large (issue #3579)
4432     if (!dy || (dy && canScrollY))
4433       { e_preventDefault(e); }
4434     display.wheelStartX = null; // Abort measurement, if in progress
4435     return
4436   }
4437
4438   // 'Project' the visible viewport to cover the area that is being
4439   // scrolled into view (if we know enough to estimate it).
4440   if (dy && wheelPixelsPerUnit != null) {
4441     var pixels = dy * wheelPixelsPerUnit;
4442     var top = cm.doc.scrollTop, bot = top + display.wrapper.clientHeight;
4443     if (pixels < 0) { top = Math.max(0, top + pixels - 50); }
4444     else { bot = Math.min(cm.doc.height, bot + pixels + 50); }
4445     updateDisplaySimple(cm, {top: top, bottom: bot});
4446   }
4447
4448   if (wheelSamples < 20) {
4449     if (display.wheelStartX == null) {
4450       display.wheelStartX = scroll.scrollLeft; display.wheelStartY = scroll.scrollTop;
4451       display.wheelDX = dx; display.wheelDY = dy;
4452       setTimeout(function () {
4453         if (display.wheelStartX == null) { return }
4454         var movedX = scroll.scrollLeft - display.wheelStartX;
4455         var movedY = scroll.scrollTop - display.wheelStartY;
4456         var sample = (movedY && display.wheelDY && movedY / display.wheelDY) ||
4457           (movedX && display.wheelDX && movedX / display.wheelDX);
4458         display.wheelStartX = display.wheelStartY = null;
4459         if (!sample) { return }
4460         wheelPixelsPerUnit = (wheelPixelsPerUnit * wheelSamples + sample) / (wheelSamples + 1);
4461         ++wheelSamples;
4462       }, 200);
4463     } else {
4464       display.wheelDX += dx; display.wheelDY += dy;
4465     }
4466   }
4467 }
4468
4469 // Selection objects are immutable. A new one is created every time
4470 // the selection changes. A selection is one or more non-overlapping
4471 // (and non-touching) ranges, sorted, and an integer that indicates
4472 // which one is the primary selection (the one that's scrolled into
4473 // view, that getCursor returns, etc).
4474 var Selection = function(ranges, primIndex) {
4475   this.ranges = ranges;
4476   this.primIndex = primIndex;
4477 };
4478
4479 Selection.prototype.primary = function () { return this.ranges[this.primIndex] };
4480
4481 Selection.prototype.equals = function (other) {
4482     var this$1 = this;
4483
4484   if (other == this) { return true }
4485   if (other.primIndex != this.primIndex || other.ranges.length != this.ranges.length) { return false }
4486   for (var i = 0; i < this.ranges.length; i++) {
4487     var here = this$1.ranges[i], there = other.ranges[i];
4488     if (!equalCursorPos(here.anchor, there.anchor) || !equalCursorPos(here.head, there.head)) { return false }
4489   }
4490   return true
4491 };
4492
4493 Selection.prototype.deepCopy = function () {
4494     var this$1 = this;
4495
4496   var out = [];
4497   for (var i = 0; i < this.ranges.length; i++)
4498     { out[i] = new Range(copyPos(this$1.ranges[i].anchor), copyPos(this$1.ranges[i].head)); }
4499   return new Selection(out, this.primIndex)
4500 };
4501
4502 Selection.prototype.somethingSelected = function () {
4503     var this$1 = this;
4504
4505   for (var i = 0; i < this.ranges.length; i++)
4506     { if (!this$1.ranges[i].empty()) { return true } }
4507   return false
4508 };
4509
4510 Selection.prototype.contains = function (pos, end) {
4511     var this$1 = this;
4512
4513   if (!end) { end = pos; }
4514   for (var i = 0; i < this.ranges.length; i++) {
4515     var range = this$1.ranges[i];
4516     if (cmp(end, range.from()) >= 0 && cmp(pos, range.to()) <= 0)
4517       { return i }
4518   }
4519   return -1
4520 };
4521
4522 var Range = function(anchor, head) {
4523   this.anchor = anchor; this.head = head;
4524 };
4525
4526 Range.prototype.from = function () { return minPos(this.anchor, this.head) };
4527 Range.prototype.to = function () { return maxPos(this.anchor, this.head) };
4528 Range.prototype.empty = function () { return this.head.line == this.anchor.line && this.head.ch == this.anchor.ch };
4529
4530 // Take an unsorted, potentially overlapping set of ranges, and
4531 // build a selection out of it. 'Consumes' ranges array (modifying
4532 // it).
4533 function normalizeSelection(ranges, primIndex) {
4534   var prim = ranges[primIndex];
4535   ranges.sort(function (a, b) { return cmp(a.from(), b.from()); });
4536   primIndex = indexOf(ranges, prim);
4537   for (var i = 1; i < ranges.length; i++) {
4538     var cur = ranges[i], prev = ranges[i - 1];
4539     if (cmp(prev.to(), cur.from()) >= 0) {
4540       var from = minPos(prev.from(), cur.from()), to = maxPos(prev.to(), cur.to());
4541       var inv = prev.empty() ? cur.from() == cur.head : prev.from() == prev.head;
4542       if (i <= primIndex) { --primIndex; }
4543       ranges.splice(--i, 2, new Range(inv ? to : from, inv ? from : to));
4544     }
4545   }
4546   return new Selection(ranges, primIndex)
4547 }
4548
4549 function simpleSelection(anchor, head) {
4550   return new Selection([new Range(anchor, head || anchor)], 0)
4551 }
4552
4553 // Compute the position of the end of a change (its 'to' property
4554 // refers to the pre-change end).
4555 function changeEnd(change) {
4556   if (!change.text) { return change.to }
4557   return Pos(change.from.line + change.text.length - 1,
4558              lst(change.text).length + (change.text.length == 1 ? change.from.ch : 0))
4559 }
4560
4561 // Adjust a position to refer to the post-change position of the
4562 // same text, or the end of the change if the change covers it.
4563 function adjustForChange(pos, change) {
4564   if (cmp(pos, change.from) < 0) { return pos }
4565   if (cmp(pos, change.to) <= 0) { return changeEnd(change) }
4566
4567   var line = pos.line + change.text.length - (change.to.line - change.from.line) - 1, ch = pos.ch;
4568   if (pos.line == change.to.line) { ch += changeEnd(change).ch - change.to.ch; }
4569   return Pos(line, ch)
4570 }
4571
4572 function computeSelAfterChange(doc, change) {
4573   var out = [];
4574   for (var i = 0; i < doc.sel.ranges.length; i++) {
4575     var range = doc.sel.ranges[i];
4576     out.push(new Range(adjustForChange(range.anchor, change),
4577                        adjustForChange(range.head, change)));
4578   }
4579   return normalizeSelection(out, doc.sel.primIndex)
4580 }
4581
4582 function offsetPos(pos, old, nw) {
4583   if (pos.line == old.line)
4584     { return Pos(nw.line, pos.ch - old.ch + nw.ch) }
4585   else
4586     { return Pos(nw.line + (pos.line - old.line), pos.ch) }
4587 }
4588
4589 // Used by replaceSelections to allow moving the selection to the
4590 // start or around the replaced test. Hint may be "start" or "around".
4591 function computeReplacedSel(doc, changes, hint) {
4592   var out = [];
4593   var oldPrev = Pos(doc.first, 0), newPrev = oldPrev;
4594   for (var i = 0; i < changes.length; i++) {
4595     var change = changes[i];
4596     var from = offsetPos(change.from, oldPrev, newPrev);
4597     var to = offsetPos(changeEnd(change), oldPrev, newPrev);
4598     oldPrev = change.to;
4599     newPrev = to;
4600     if (hint == "around") {
4601       var range = doc.sel.ranges[i], inv = cmp(range.head, range.anchor) < 0;
4602       out[i] = new Range(inv ? to : from, inv ? from : to);
4603     } else {
4604       out[i] = new Range(from, from);
4605     }
4606   }
4607   return new Selection(out, doc.sel.primIndex)
4608 }
4609
4610 // Used to get the editor into a consistent state again when options change.
4611
4612 function loadMode(cm) {
4613   cm.doc.mode = getMode(cm.options, cm.doc.modeOption);
4614   resetModeState(cm);
4615 }
4616
4617 function resetModeState(cm) {
4618   cm.doc.iter(function (line) {
4619     if (line.stateAfter) { line.stateAfter = null; }
4620     if (line.styles) { line.styles = null; }
4621   });
4622   cm.doc.modeFrontier = cm.doc.highlightFrontier = cm.doc.first;
4623   startWorker(cm, 100);
4624   cm.state.modeGen++;
4625   if (cm.curOp) { regChange(cm); }
4626 }
4627
4628 // DOCUMENT DATA STRUCTURE
4629
4630 // By default, updates that start and end at the beginning of a line
4631 // are treated specially, in order to make the association of line
4632 // widgets and marker elements with the text behave more intuitive.
4633 function isWholeLineUpdate(doc, change) {
4634   return change.from.ch == 0 && change.to.ch == 0 && lst(change.text) == "" &&
4635     (!doc.cm || doc.cm.options.wholeLineUpdateBefore)
4636 }
4637
4638 // Perform a change on the document data structure.
4639 function updateDoc(doc, change, markedSpans, estimateHeight$$1) {
4640   function spansFor(n) {return markedSpans ? markedSpans[n] : null}
4641   function update(line, text, spans) {
4642     updateLine(line, text, spans, estimateHeight$$1);
4643     signalLater(line, "change", line, change);
4644   }
4645   function linesFor(start, end) {
4646     var result = [];
4647     for (var i = start; i < end; ++i)
4648       { result.push(new Line(text[i], spansFor(i), estimateHeight$$1)); }
4649     return result
4650   }
4651
4652   var from = change.from, to = change.to, text = change.text;
4653   var firstLine = getLine(doc, from.line), lastLine = getLine(doc, to.line);
4654   var lastText = lst(text), lastSpans = spansFor(text.length - 1), nlines = to.line - from.line;
4655
4656   // Adjust the line structure
4657   if (change.full) {
4658     doc.insert(0, linesFor(0, text.length));
4659     doc.remove(text.length, doc.size - text.length);
4660   } else if (isWholeLineUpdate(doc, change)) {
4661     // This is a whole-line replace. Treated specially to make
4662     // sure line objects move the way they are supposed to.
4663     var added = linesFor(0, text.length - 1);
4664     update(lastLine, lastLine.text, lastSpans);
4665     if (nlines) { doc.remove(from.line, nlines); }
4666     if (added.length) { doc.insert(from.line, added); }
4667   } else if (firstLine == lastLine) {
4668     if (text.length == 1) {
4669       update(firstLine, firstLine.text.slice(0, from.ch) + lastText + firstLine.text.slice(to.ch), lastSpans);
4670     } else {
4671       var added$1 = linesFor(1, text.length - 1);
4672       added$1.push(new Line(lastText + firstLine.text.slice(to.ch), lastSpans, estimateHeight$$1));
4673       update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0));
4674       doc.insert(from.line + 1, added$1);
4675     }
4676   } else if (text.length == 1) {
4677     update(firstLine, firstLine.text.slice(0, from.ch) + text[0] + lastLine.text.slice(to.ch), spansFor(0));
4678     doc.remove(from.line + 1, nlines);
4679   } else {
4680     update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0));
4681     update(lastLine, lastText + lastLine.text.slice(to.ch), lastSpans);
4682     var added$2 = linesFor(1, text.length - 1);
4683     if (nlines > 1) { doc.remove(from.line + 1, nlines - 1); }
4684     doc.insert(from.line + 1, added$2);
4685   }
4686
4687   signalLater(doc, "change", doc, change);
4688 }
4689
4690 // Call f for all linked documents.
4691 function linkedDocs(doc, f, sharedHistOnly) {
4692   function propagate(doc, skip, sharedHist) {
4693     if (doc.linked) { for (var i = 0; i < doc.linked.length; ++i) {
4694       var rel = doc.linked[i];
4695       if (rel.doc == skip) { continue }
4696       var shared = sharedHist && rel.sharedHist;
4697       if (sharedHistOnly && !shared) { continue }
4698       f(rel.doc, shared);
4699       propagate(rel.doc, doc, shared);
4700     } }
4701   }
4702   propagate(doc, null, true);
4703 }
4704
4705 // Attach a document to an editor.
4706 function attachDoc(cm, doc) {
4707   if (doc.cm) { throw new Error("This document is already in use.") }
4708   cm.doc = doc;
4709   doc.cm = cm;
4710   estimateLineHeights(cm);
4711   loadMode(cm);
4712   setDirectionClass(cm);
4713   if (!cm.options.lineWrapping) { findMaxLine(cm); }
4714   cm.options.mode = doc.modeOption;
4715   regChange(cm);
4716 }
4717
4718 function setDirectionClass(cm) {
4719   (cm.doc.direction == "rtl" ? addClass : rmClass)(cm.display.lineDiv, "CodeMirror-rtl");
4720 }
4721
4722 function directionChanged(cm) {
4723   runInOp(cm, function () {
4724     setDirectionClass(cm);
4725     regChange(cm);
4726   });
4727 }
4728
4729 function History(startGen) {
4730   // Arrays of change events and selections. Doing something adds an
4731   // event to done and clears undo. Undoing moves events from done
4732   // to undone, redoing moves them in the other direction.
4733   this.done = []; this.undone = [];
4734   this.undoDepth = Infinity;
4735   // Used to track when changes can be merged into a single undo
4736   // event
4737   this.lastModTime = this.lastSelTime = 0;
4738   this.lastOp = this.lastSelOp = null;
4739   this.lastOrigin = this.lastSelOrigin = null;
4740   // Used by the isClean() method
4741   this.generation = this.maxGeneration = startGen || 1;
4742 }
4743
4744 // Create a history change event from an updateDoc-style change
4745 // object.
4746 function historyChangeFromChange(doc, change) {
4747   var histChange = {from: copyPos(change.from), to: changeEnd(change), text: getBetween(doc, change.from, change.to)};
4748   attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1);
4749   linkedDocs(doc, function (doc) { return attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1); }, true);
4750   return histChange
4751 }
4752
4753 // Pop all selection events off the end of a history array. Stop at
4754 // a change event.
4755 function clearSelectionEvents(array) {
4756   while (array.length) {
4757     var last = lst(array);
4758     if (last.ranges) { array.pop(); }
4759     else { break }
4760   }
4761 }
4762
4763 // Find the top change event in the history. Pop off selection
4764 // events that are in the way.
4765 function lastChangeEvent(hist, force) {
4766   if (force) {
4767     clearSelectionEvents(hist.done);
4768     return lst(hist.done)
4769   } else if (hist.done.length && !lst(hist.done).ranges) {
4770     return lst(hist.done)
4771   } else if (hist.done.length > 1 && !hist.done[hist.done.length - 2].ranges) {
4772     hist.done.pop();
4773     return lst(hist.done)
4774   }
4775 }
4776
4777 // Register a change in the history. Merges changes that are within
4778 // a single operation, or are close together with an origin that
4779 // allows merging (starting with "+") into a single event.
4780 function addChangeToHistory(doc, change, selAfter, opId) {
4781   var hist = doc.history;
4782   hist.undone.length = 0;
4783   var time = +new Date, cur;
4784   var last;
4785
4786   if ((hist.lastOp == opId ||
4787        hist.lastOrigin == change.origin && change.origin &&
4788        ((change.origin.charAt(0) == "+" && doc.cm && hist.lastModTime > time - doc.cm.options.historyEventDelay) ||
4789         change.origin.charAt(0) == "*")) &&
4790       (cur = lastChangeEvent(hist, hist.lastOp == opId))) {
4791     // Merge this change into the last event
4792     last = lst(cur.changes);
4793     if (cmp(change.from, change.to) == 0 && cmp(change.from, last.to) == 0) {
4794       // Optimized case for simple insertion -- don't want to add
4795       // new changesets for every character typed
4796       last.to = changeEnd(change);
4797     } else {
4798       // Add new sub-event
4799       cur.changes.push(historyChangeFromChange(doc, change));
4800     }
4801   } else {
4802     // Can not be merged, start a new event.
4803     var before = lst(hist.done);
4804     if (!before || !before.ranges)
4805       { pushSelectionToHistory(doc.sel, hist.done); }
4806     cur = {changes: [historyChangeFromChange(doc, change)],
4807            generation: hist.generation};
4808     hist.done.push(cur);
4809     while (hist.done.length > hist.undoDepth) {
4810       hist.done.shift();
4811       if (!hist.done[0].ranges) { hist.done.shift(); }
4812     }
4813   }
4814   hist.done.push(selAfter);
4815   hist.generation = ++hist.maxGeneration;
4816   hist.lastModTime = hist.lastSelTime = time;
4817   hist.lastOp = hist.lastSelOp = opId;
4818   hist.lastOrigin = hist.lastSelOrigin = change.origin;
4819
4820   if (!last) { signal(doc, "historyAdded"); }
4821 }
4822
4823 function selectionEventCanBeMerged(doc, origin, prev, sel) {
4824   var ch = origin.charAt(0);
4825   return ch == "*" ||
4826     ch == "+" &&
4827     prev.ranges.length == sel.ranges.length &&
4828     prev.somethingSelected() == sel.somethingSelected() &&
4829     new Date - doc.history.lastSelTime <= (doc.cm ? doc.cm.options.historyEventDelay : 500)
4830 }
4831
4832 // Called whenever the selection changes, sets the new selection as
4833 // the pending selection in the history, and pushes the old pending
4834 // selection into the 'done' array when it was significantly
4835 // different (in number of selected ranges, emptiness, or time).
4836 function addSelectionToHistory(doc, sel, opId, options) {
4837   var hist = doc.history, origin = options && options.origin;
4838
4839   // A new event is started when the previous origin does not match
4840   // the current, or the origins don't allow matching. Origins
4841   // starting with * are always merged, those starting with + are
4842   // merged when similar and close together in time.
4843   if (opId == hist.lastSelOp ||
4844       (origin && hist.lastSelOrigin == origin &&
4845        (hist.lastModTime == hist.lastSelTime && hist.lastOrigin == origin ||
4846         selectionEventCanBeMerged(doc, origin, lst(hist.done), sel))))
4847     { hist.done[hist.done.length - 1] = sel; }
4848   else
4849     { pushSelectionToHistory(sel, hist.done); }
4850
4851   hist.lastSelTime = +new Date;
4852   hist.lastSelOrigin = origin;
4853   hist.lastSelOp = opId;
4854   if (options && options.clearRedo !== false)
4855     { clearSelectionEvents(hist.undone); }
4856 }
4857
4858 function pushSelectionToHistory(sel, dest) {
4859   var top = lst(dest);
4860   if (!(top && top.ranges && top.equals(sel)))
4861     { dest.push(sel); }
4862 }
4863
4864 // Used to store marked span information in the history.
4865 function attachLocalSpans(doc, change, from, to) {
4866   var existing = change["spans_" + doc.id], n = 0;
4867   doc.iter(Math.max(doc.first, from), Math.min(doc.first + doc.size, to), function (line) {
4868     if (line.markedSpans)
4869       { (existing || (existing = change["spans_" + doc.id] = {}))[n] = line.markedSpans; }
4870     ++n;
4871   });
4872 }
4873
4874 // When un/re-doing restores text containing marked spans, those
4875 // that have been explicitly cleared should not be restored.
4876 function removeClearedSpans(spans) {
4877   if (!spans) { return null }
4878   var out;
4879   for (var i = 0; i < spans.length; ++i) {
4880     if (spans[i].marker.explicitlyCleared) { if (!out) { out = spans.slice(0, i); } }
4881     else if (out) { out.push(spans[i]); }
4882   }
4883   return !out ? spans : out.length ? out : null
4884 }
4885
4886 // Retrieve and filter the old marked spans stored in a change event.
4887 function getOldSpans(doc, change) {
4888   var found = change["spans_" + doc.id];
4889   if (!found) { return null }
4890   var nw = [];
4891   for (var i = 0; i < change.text.length; ++i)
4892     { nw.push(removeClearedSpans(found[i])); }
4893   return nw
4894 }
4895
4896 // Used for un/re-doing changes from the history. Combines the
4897 // result of computing the existing spans with the set of spans that
4898 // existed in the history (so that deleting around a span and then
4899 // undoing brings back the span).
4900 function mergeOldSpans(doc, change) {
4901   var old = getOldSpans(doc, change);
4902   var stretched = stretchSpansOverChange(doc, change);
4903   if (!old) { return stretched }
4904   if (!stretched) { return old }
4905
4906   for (var i = 0; i < old.length; ++i) {
4907     var oldCur = old[i], stretchCur = stretched[i];
4908     if (oldCur && stretchCur) {
4909       spans: for (var j = 0; j < stretchCur.length; ++j) {
4910         var span = stretchCur[j];
4911         for (var k = 0; k < oldCur.length; ++k)
4912           { if (oldCur[k].marker == span.marker) { continue spans } }
4913         oldCur.push(span);
4914       }
4915     } else if (stretchCur) {
4916       old[i] = stretchCur;
4917     }
4918   }
4919   return old
4920 }
4921
4922 // Used both to provide a JSON-safe object in .getHistory, and, when
4923 // detaching a document, to split the history in two
4924 function copyHistoryArray(events, newGroup, instantiateSel) {
4925   var copy = [];
4926   for (var i = 0; i < events.length; ++i) {
4927     var event = events[i];
4928     if (event.ranges) {
4929       copy.push(instantiateSel ? Selection.prototype.deepCopy.call(event) : event);
4930       continue
4931     }
4932     var changes = event.changes, newChanges = [];
4933     copy.push({changes: newChanges});
4934     for (var j = 0; j < changes.length; ++j) {
4935       var change = changes[j], m = (void 0);
4936       newChanges.push({from: change.from, to: change.to, text: change.text});
4937       if (newGroup) { for (var prop in change) { if (m = prop.match(/^spans_(\d+)$/)) {
4938         if (indexOf(newGroup, Number(m[1])) > -1) {
4939           lst(newChanges)[prop] = change[prop];
4940           delete change[prop];
4941         }
4942       } } }
4943     }
4944   }
4945   return copy
4946 }
4947
4948 // The 'scroll' parameter given to many of these indicated whether
4949 // the new cursor position should be scrolled into view after
4950 // modifying the selection.
4951
4952 // If shift is held or the extend flag is set, extends a range to
4953 // include a given position (and optionally a second position).
4954 // Otherwise, simply returns the range between the given positions.
4955 // Used for cursor motion and such.
4956 function extendRange(range, head, other, extend) {
4957   if (extend) {
4958     var anchor = range.anchor;
4959     if (other) {
4960       var posBefore = cmp(head, anchor) < 0;
4961       if (posBefore != (cmp(other, anchor) < 0)) {
4962         anchor = head;
4963         head = other;
4964       } else if (posBefore != (cmp(head, other) < 0)) {
4965         head = other;
4966       }
4967     }
4968     return new Range(anchor, head)
4969   } else {
4970     return new Range(other || head, head)
4971   }
4972 }
4973
4974 // Extend the primary selection range, discard the rest.
4975 function extendSelection(doc, head, other, options, extend) {
4976   if (extend == null) { extend = doc.cm && (doc.cm.display.shift || doc.extend); }
4977   setSelection(doc, new Selection([extendRange(doc.sel.primary(), head, other, extend)], 0), options);
4978 }
4979
4980 // Extend all selections (pos is an array of selections with length
4981 // equal the number of selections)
4982 function extendSelections(doc, heads, options) {
4983   var out = [];
4984   var extend = doc.cm && (doc.cm.display.shift || doc.extend);
4985   for (var i = 0; i < doc.sel.ranges.length; i++)
4986     { out[i] = extendRange(doc.sel.ranges[i], heads[i], null, extend); }
4987   var newSel = normalizeSelection(out, doc.sel.primIndex);
4988   setSelection(doc, newSel, options);
4989 }
4990
4991 // Updates a single range in the selection.
4992 function replaceOneSelection(doc, i, range, options) {
4993   var ranges = doc.sel.ranges.slice(0);
4994   ranges[i] = range;
4995   setSelection(doc, normalizeSelection(ranges, doc.sel.primIndex), options);
4996 }
4997
4998 // Reset the selection to a single range.
4999 function setSimpleSelection(doc, anchor, head, options) {
5000   setSelection(doc, simpleSelection(anchor, head), options);
5001 }
5002
5003 // Give beforeSelectionChange handlers a change to influence a
5004 // selection update.
5005 function filterSelectionChange(doc, sel, options) {
5006   var obj = {
5007     ranges: sel.ranges,
5008     update: function(ranges) {
5009       var this$1 = this;
5010
5011       this.ranges = [];
5012       for (var i = 0; i < ranges.length; i++)
5013         { this$1.ranges[i] = new Range(clipPos(doc, ranges[i].anchor),
5014                                    clipPos(doc, ranges[i].head)); }
5015     },
5016     origin: options && options.origin
5017   };
5018   signal(doc, "beforeSelectionChange", doc, obj);
5019   if (doc.cm) { signal(doc.cm, "beforeSelectionChange", doc.cm, obj); }
5020   if (obj.ranges != sel.ranges) { return normalizeSelection(obj.ranges, obj.ranges.length - 1) }
5021   else { return sel }
5022 }
5023
5024 function setSelectionReplaceHistory(doc, sel, options) {
5025   var done = doc.history.done, last = lst(done);
5026   if (last && last.ranges) {
5027     done[done.length - 1] = sel;
5028     setSelectionNoUndo(doc, sel, options);
5029   } else {
5030     setSelection(doc, sel, options);
5031   }
5032 }
5033
5034 // Set a new selection.
5035 function setSelection(doc, sel, options) {
5036   setSelectionNoUndo(doc, sel, options);
5037   addSelectionToHistory(doc, doc.sel, doc.cm ? doc.cm.curOp.id : NaN, options);
5038 }
5039
5040 function setSelectionNoUndo(doc, sel, options) {
5041   if (hasHandler(doc, "beforeSelectionChange") || doc.cm && hasHandler(doc.cm, "beforeSelectionChange"))
5042     { sel = filterSelectionChange(doc, sel, options); }
5043
5044   var bias = options && options.bias ||
5045     (cmp(sel.primary().head, doc.sel.primary().head) < 0 ? -1 : 1);
5046   setSelectionInner(doc, skipAtomicInSelection(doc, sel, bias, true));
5047
5048   if (!(options && options.scroll === false) && doc.cm)
5049     { ensureCursorVisible(doc.cm); }
5050 }
5051
5052 function setSelectionInner(doc, sel) {
5053   if (sel.equals(doc.sel)) { return }
5054
5055   doc.sel = sel;
5056
5057   if (doc.cm) {
5058     doc.cm.curOp.updateInput = doc.cm.curOp.selectionChanged = true;
5059     signalCursorActivity(doc.cm);
5060   }
5061   signalLater(doc, "cursorActivity", doc);
5062 }
5063
5064 // Verify that the selection does not partially select any atomic
5065 // marked ranges.
5066 function reCheckSelection(doc) {
5067   setSelectionInner(doc, skipAtomicInSelection(doc, doc.sel, null, false));
5068 }
5069
5070 // Return a selection that does not partially select any atomic
5071 // ranges.
5072 function skipAtomicInSelection(doc, sel, bias, mayClear) {
5073   var out;
5074   for (var i = 0; i < sel.ranges.length; i++) {
5075     var range = sel.ranges[i];
5076     var old = sel.ranges.length == doc.sel.ranges.length && doc.sel.ranges[i];
5077     var newAnchor = skipAtomic(doc, range.anchor, old && old.anchor, bias, mayClear);
5078     var newHead = skipAtomic(doc, range.head, old && old.head, bias, mayClear);
5079     if (out || newAnchor != range.anchor || newHead != range.head) {
5080       if (!out) { out = sel.ranges.slice(0, i); }
5081       out[i] = new Range(newAnchor, newHead);
5082     }
5083   }
5084   return out ? normalizeSelection(out, sel.primIndex) : sel
5085 }
5086
5087 function skipAtomicInner(doc, pos, oldPos, dir, mayClear) {
5088   var line = getLine(doc, pos.line);
5089   if (line.markedSpans) { for (var i = 0; i < line.markedSpans.length; ++i) {
5090     var sp = line.markedSpans[i], m = sp.marker;
5091     if ((sp.from == null || (m.inclusiveLeft ? sp.from <= pos.ch : sp.from < pos.ch)) &&
5092         (sp.to == null || (m.inclusiveRight ? sp.to >= pos.ch : sp.to > pos.ch))) {
5093       if (mayClear) {
5094         signal(m, "beforeCursorEnter");
5095         if (m.explicitlyCleared) {
5096           if (!line.markedSpans) { break }
5097           else {--i; continue}
5098         }
5099       }
5100       if (!m.atomic) { continue }
5101
5102       if (oldPos) {
5103         var near = m.find(dir < 0 ? 1 : -1), diff = (void 0);
5104         if (dir < 0 ? m.inclusiveRight : m.inclusiveLeft)
5105           { near = movePos(doc, near, -dir, near && near.line == pos.line ? line : null); }
5106         if (near && near.line == pos.line && (diff = cmp(near, oldPos)) && (dir < 0 ? diff < 0 : diff > 0))
5107           { return skipAtomicInner(doc, near, pos, dir, mayClear) }
5108       }
5109
5110       var far = m.find(dir < 0 ? -1 : 1);
5111       if (dir < 0 ? m.inclusiveLeft : m.inclusiveRight)
5112         { far = movePos(doc, far, dir, far.line == pos.line ? line : null); }
5113       return far ? skipAtomicInner(doc, far, pos, dir, mayClear) : null
5114     }
5115   } }
5116   return pos
5117 }
5118
5119 // Ensure a given position is not inside an atomic range.
5120 function skipAtomic(doc, pos, oldPos, bias, mayClear) {
5121   var dir = bias || 1;
5122   var found = skipAtomicInner(doc, pos, oldPos, dir, mayClear) ||
5123       (!mayClear && skipAtomicInner(doc, pos, oldPos, dir, true)) ||
5124       skipAtomicInner(doc, pos, oldPos, -dir, mayClear) ||
5125       (!mayClear && skipAtomicInner(doc, pos, oldPos, -dir, true));
5126   if (!found) {
5127     doc.cantEdit = true;
5128     return Pos(doc.first, 0)
5129   }
5130   return found
5131 }
5132
5133 function movePos(doc, pos, dir, line) {
5134   if (dir < 0 && pos.ch == 0) {
5135     if (pos.line > doc.first) { return clipPos(doc, Pos(pos.line - 1)) }
5136     else { return null }
5137   } else if (dir > 0 && pos.ch == (line || getLine(doc, pos.line)).text.length) {
5138     if (pos.line < doc.first + doc.size - 1) { return Pos(pos.line + 1, 0) }
5139     else { return null }
5140   } else {
5141     return new Pos(pos.line, pos.ch + dir)
5142   }
5143 }
5144
5145 function selectAll(cm) {
5146   cm.setSelection(Pos(cm.firstLine(), 0), Pos(cm.lastLine()), sel_dontScroll);
5147 }
5148
5149 // UPDATING
5150
5151 // Allow "beforeChange" event handlers to influence a change
5152 function filterChange(doc, change, update) {
5153   var obj = {
5154     canceled: false,
5155     from: change.from,
5156     to: change.to,
5157     text: change.text,
5158     origin: change.origin,
5159     cancel: function () { return obj.canceled = true; }
5160   };
5161   if (update) { obj.update = function (from, to, text, origin) {
5162     if (from) { obj.from = clipPos(doc, from); }
5163     if (to) { obj.to = clipPos(doc, to); }
5164     if (text) { obj.text = text; }
5165     if (origin !== undefined) { obj.origin = origin; }
5166   }; }
5167   signal(doc, "beforeChange", doc, obj);
5168   if (doc.cm) { signal(doc.cm, "beforeChange", doc.cm, obj); }
5169
5170   if (obj.canceled) { return null }
5171   return {from: obj.from, to: obj.to, text: obj.text, origin: obj.origin}
5172 }
5173
5174 // Apply a change to a document, and add it to the document's
5175 // history, and propagating it to all linked documents.
5176 function makeChange(doc, change, ignoreReadOnly) {
5177   if (doc.cm) {
5178     if (!doc.cm.curOp) { return operation(doc.cm, makeChange)(doc, change, ignoreReadOnly) }
5179     if (doc.cm.state.suppressEdits) { return }
5180   }
5181
5182   if (hasHandler(doc, "beforeChange") || doc.cm && hasHandler(doc.cm, "beforeChange")) {
5183     change = filterChange(doc, change, true);
5184     if (!change) { return }
5185   }
5186
5187   // Possibly split or suppress the update based on the presence
5188   // of read-only spans in its range.
5189   var split = sawReadOnlySpans && !ignoreReadOnly && removeReadOnlyRanges(doc, change.from, change.to);
5190   if (split) {
5191     for (var i = split.length - 1; i >= 0; --i)
5192       { makeChangeInner(doc, {from: split[i].from, to: split[i].to, text: i ? [""] : change.text}); }
5193   } else {
5194     makeChangeInner(doc, change);
5195   }
5196 }
5197
5198 function makeChangeInner(doc, change) {
5199   if (change.text.length == 1 && change.text[0] == "" && cmp(change.from, change.to) == 0) { return }
5200   var selAfter = computeSelAfterChange(doc, change);
5201   addChangeToHistory(doc, change, selAfter, doc.cm ? doc.cm.curOp.id : NaN);
5202
5203   makeChangeSingleDoc(doc, change, selAfter, stretchSpansOverChange(doc, change));
5204   var rebased = [];
5205
5206   linkedDocs(doc, function (doc, sharedHist) {
5207     if (!sharedHist && indexOf(rebased, doc.history) == -1) {
5208       rebaseHist(doc.history, change);
5209       rebased.push(doc.history);
5210     }
5211     makeChangeSingleDoc(doc, change, null, stretchSpansOverChange(doc, change));
5212   });
5213 }
5214
5215 // Revert a change stored in a document's history.
5216 function makeChangeFromHistory(doc, type, allowSelectionOnly) {
5217   if (doc.cm && doc.cm.state.suppressEdits && !allowSelectionOnly) { return }
5218
5219   var hist = doc.history, event, selAfter = doc.sel;
5220   var source = type == "undo" ? hist.done : hist.undone, dest = type == "undo" ? hist.undone : hist.done;
5221
5222   // Verify that there is a useable event (so that ctrl-z won't
5223   // needlessly clear selection events)
5224   var i = 0;
5225   for (; i < source.length; i++) {
5226     event = source[i];
5227     if (allowSelectionOnly ? event.ranges && !event.equals(doc.sel) : !event.ranges)
5228       { break }
5229   }
5230   if (i == source.length) { return }
5231   hist.lastOrigin = hist.lastSelOrigin = null;
5232
5233   for (;;) {
5234     event = source.pop();
5235     if (event.ranges) {
5236       pushSelectionToHistory(event, dest);
5237       if (allowSelectionOnly && !event.equals(doc.sel)) {
5238         setSelection(doc, event, {clearRedo: false});
5239         return
5240       }
5241       selAfter = event;
5242     }
5243     else { break }
5244   }
5245
5246   // Build up a reverse change object to add to the opposite history
5247   // stack (redo when undoing, and vice versa).
5248   var antiChanges = [];
5249   pushSelectionToHistory(selAfter, dest);
5250   dest.push({changes: antiChanges, generation: hist.generation});
5251   hist.generation = event.generation || ++hist.maxGeneration;
5252
5253   var filter = hasHandler(doc, "beforeChange") || doc.cm && hasHandler(doc.cm, "beforeChange");
5254
5255   var loop = function ( i ) {
5256     var change = event.changes[i];
5257     change.origin = type;
5258     if (filter && !filterChange(doc, change, false)) {
5259       source.length = 0;
5260       return {}
5261     }
5262
5263     antiChanges.push(historyChangeFromChange(doc, change));
5264
5265     var after = i ? computeSelAfterChange(doc, change) : lst(source);
5266     makeChangeSingleDoc(doc, change, after, mergeOldSpans(doc, change));
5267     if (!i && doc.cm) { doc.cm.scrollIntoView({from: change.from, to: changeEnd(change)}); }
5268     var rebased = [];
5269
5270     // Propagate to the linked documents
5271     linkedDocs(doc, function (doc, sharedHist) {
5272       if (!sharedHist && indexOf(rebased, doc.history) == -1) {
5273         rebaseHist(doc.history, change);
5274         rebased.push(doc.history);
5275       }
5276       makeChangeSingleDoc(doc, change, null, mergeOldSpans(doc, change));
5277     });
5278   };
5279
5280   for (var i$1 = event.changes.length - 1; i$1 >= 0; --i$1) {
5281     var returned = loop( i$1 );
5282
5283     if ( returned ) return returned.v;
5284   }
5285 }
5286
5287 // Sub-views need their line numbers shifted when text is added
5288 // above or below them in the parent document.
5289 function shiftDoc(doc, distance) {
5290   if (distance == 0) { return }
5291   doc.first += distance;
5292   doc.sel = new Selection(map(doc.sel.ranges, function (range) { return new Range(
5293     Pos(range.anchor.line + distance, range.anchor.ch),
5294     Pos(range.head.line + distance, range.head.ch)
5295   ); }), doc.sel.primIndex);
5296   if (doc.cm) {
5297     regChange(doc.cm, doc.first, doc.first - distance, distance);
5298     for (var d = doc.cm.display, l = d.viewFrom; l < d.viewTo; l++)
5299       { regLineChange(doc.cm, l, "gutter"); }
5300   }
5301 }
5302
5303 // More lower-level change function, handling only a single document
5304 // (not linked ones).
5305 function makeChangeSingleDoc(doc, change, selAfter, spans) {
5306   if (doc.cm && !doc.cm.curOp)
5307     { return operation(doc.cm, makeChangeSingleDoc)(doc, change, selAfter, spans) }
5308
5309   if (change.to.line < doc.first) {
5310     shiftDoc(doc, change.text.length - 1 - (change.to.line - change.from.line));
5311     return
5312   }
5313   if (change.from.line > doc.lastLine()) { return }
5314
5315   // Clip the change to the size of this doc
5316   if (change.from.line < doc.first) {
5317     var shift = change.text.length - 1 - (doc.first - change.from.line);
5318     shiftDoc(doc, shift);
5319     change = {from: Pos(doc.first, 0), to: Pos(change.to.line + shift, change.to.ch),
5320               text: [lst(change.text)], origin: change.origin};
5321   }
5322   var last = doc.lastLine();
5323   if (change.to.line > last) {
5324     change = {from: change.from, to: Pos(last, getLine(doc, last).text.length),
5325               text: [change.text[0]], origin: change.origin};
5326   }
5327
5328   change.removed = getBetween(doc, change.from, change.to);
5329
5330   if (!selAfter) { selAfter = computeSelAfterChange(doc, change); }
5331   if (doc.cm) { makeChangeSingleDocInEditor(doc.cm, change, spans); }
5332   else { updateDoc(doc, change, spans); }
5333   setSelectionNoUndo(doc, selAfter, sel_dontScroll);
5334 }
5335
5336 // Handle the interaction of a change to a document with the editor
5337 // that this document is part of.
5338 function makeChangeSingleDocInEditor(cm, change, spans) {
5339   var doc = cm.doc, display = cm.display, from = change.from, to = change.to;
5340
5341   var recomputeMaxLength = false, checkWidthStart = from.line;
5342   if (!cm.options.lineWrapping) {
5343     checkWidthStart = lineNo(visualLine(getLine(doc, from.line)));
5344     doc.iter(checkWidthStart, to.line + 1, function (line) {
5345       if (line == display.maxLine) {
5346         recomputeMaxLength = true;
5347         return true
5348       }
5349     });
5350   }
5351
5352   if (doc.sel.contains(change.from, change.to) > -1)
5353     { signalCursorActivity(cm); }
5354
5355   updateDoc(doc, change, spans, estimateHeight(cm));
5356
5357   if (!cm.options.lineWrapping) {
5358     doc.iter(checkWidthStart, from.line + change.text.length, function (line) {
5359       var len = lineLength(line);
5360       if (len > display.maxLineLength) {
5361         display.maxLine = line;
5362         display.maxLineLength = len;
5363         display.maxLineChanged = true;
5364         recomputeMaxLength = false;
5365       }
5366     });
5367     if (recomputeMaxLength) { cm.curOp.updateMaxLine = true; }
5368   }
5369
5370   retreatFrontier(doc, from.line);
5371   startWorker(cm, 400);
5372
5373   var lendiff = change.text.length - (to.line - from.line) - 1;
5374   // Remember that these lines changed, for updating the display
5375   if (change.full)
5376     { regChange(cm); }
5377   else if (from.line == to.line && change.text.length == 1 && !isWholeLineUpdate(cm.doc, change))
5378     { regLineChange(cm, from.line, "text"); }
5379   else
5380     { regChange(cm, from.line, to.line + 1, lendiff); }
5381
5382   var changesHandler = hasHandler(cm, "changes"), changeHandler = hasHandler(cm, "change");
5383   if (changeHandler || changesHandler) {
5384     var obj = {
5385       from: from, to: to,
5386       text: change.text,
5387       removed: change.removed,
5388       origin: change.origin
5389     };
5390     if (changeHandler) { signalLater(cm, "change", cm, obj); }
5391     if (changesHandler) { (cm.curOp.changeObjs || (cm.curOp.changeObjs = [])).push(obj); }
5392   }
5393   cm.display.selForContextMenu = null;
5394 }
5395
5396 function replaceRange(doc, code, from, to, origin) {
5397   if (!to) { to = from; }
5398   if (cmp(to, from) < 0) { var tmp = to; to = from; from = tmp; }
5399   if (typeof code == "string") { code = doc.splitLines(code); }
5400   makeChange(doc, {from: from, to: to, text: code, origin: origin});
5401 }
5402
5403 // Rebasing/resetting history to deal with externally-sourced changes
5404
5405 function rebaseHistSelSingle(pos, from, to, diff) {
5406   if (to < pos.line) {
5407     pos.line += diff;
5408   } else if (from < pos.line) {
5409     pos.line = from;
5410     pos.ch = 0;
5411   }
5412 }
5413
5414 // Tries to rebase an array of history events given a change in the
5415 // document. If the change touches the same lines as the event, the
5416 // event, and everything 'behind' it, is discarded. If the change is
5417 // before the event, the event's positions are updated. Uses a
5418 // copy-on-write scheme for the positions, to avoid having to
5419 // reallocate them all on every rebase, but also avoid problems with
5420 // shared position objects being unsafely updated.
5421 function rebaseHistArray(array, from, to, diff) {
5422   for (var i = 0; i < array.length; ++i) {
5423     var sub = array[i], ok = true;
5424     if (sub.ranges) {
5425       if (!sub.copied) { sub = array[i] = sub.deepCopy(); sub.copied = true; }
5426       for (var j = 0; j < sub.ranges.length; j++) {
5427         rebaseHistSelSingle(sub.ranges[j].anchor, from, to, diff);
5428         rebaseHistSelSingle(sub.ranges[j].head, from, to, diff);
5429       }
5430       continue
5431     }
5432     for (var j$1 = 0; j$1 < sub.changes.length; ++j$1) {
5433       var cur = sub.changes[j$1];
5434       if (to < cur.from.line) {
5435         cur.from = Pos(cur.from.line + diff, cur.from.ch);
5436         cur.to = Pos(cur.to.line + diff, cur.to.ch);
5437       } else if (from <= cur.to.line) {
5438         ok = false;
5439         break
5440       }
5441     }
5442     if (!ok) {
5443       array.splice(0, i + 1);
5444       i = 0;
5445     }
5446   }
5447 }
5448
5449 function rebaseHist(hist, change) {
5450   var from = change.from.line, to = change.to.line, diff = change.text.length - (to - from) - 1;
5451   rebaseHistArray(hist.done, from, to, diff);
5452   rebaseHistArray(hist.undone, from, to, diff);
5453 }
5454
5455 // Utility for applying a change to a line by handle or number,
5456 // returning the number and optionally registering the line as
5457 // changed.
5458 function changeLine(doc, handle, changeType, op) {
5459   var no = handle, line = handle;
5460   if (typeof handle == "number") { line = getLine(doc, clipLine(doc, handle)); }
5461   else { no = lineNo(handle); }
5462   if (no == null) { return null }
5463   if (op(line, no) && doc.cm) { regLineChange(doc.cm, no, changeType); }
5464   return line
5465 }
5466
5467 // The document is represented as a BTree consisting of leaves, with
5468 // chunk of lines in them, and branches, with up to ten leaves or
5469 // other branch nodes below them. The top node is always a branch
5470 // node, and is the document object itself (meaning it has
5471 // additional methods and properties).
5472 //
5473 // All nodes have parent links. The tree is used both to go from
5474 // line numbers to line objects, and to go from objects to numbers.
5475 // It also indexes by height, and is used to convert between height
5476 // and line object, and to find the total height of the document.
5477 //
5478 // See also http://marijnhaverbeke.nl/blog/codemirror-line-tree.html
5479
5480 function LeafChunk(lines) {
5481   var this$1 = this;
5482
5483   this.lines = lines;
5484   this.parent = null;
5485   var height = 0;
5486   for (var i = 0; i < lines.length; ++i) {
5487     lines[i].parent = this$1;
5488     height += lines[i].height;
5489   }
5490   this.height = height;
5491 }
5492
5493 LeafChunk.prototype = {
5494   chunkSize: function chunkSize() { return this.lines.length },
5495
5496   // Remove the n lines at offset 'at'.
5497   removeInner: function removeInner(at, n) {
5498     var this$1 = this;
5499
5500     for (var i = at, e = at + n; i < e; ++i) {
5501       var line = this$1.lines[i];
5502       this$1.height -= line.height;
5503       cleanUpLine(line);
5504       signalLater(line, "delete");
5505     }
5506     this.lines.splice(at, n);
5507   },
5508
5509   // Helper used to collapse a small branch into a single leaf.
5510   collapse: function collapse(lines) {
5511     lines.push.apply(lines, this.lines);
5512   },
5513
5514   // Insert the given array of lines at offset 'at', count them as
5515   // having the given height.
5516   insertInner: function insertInner(at, lines, height) {
5517     var this$1 = this;
5518
5519     this.height += height;
5520     this.lines = this.lines.slice(0, at).concat(lines).concat(this.lines.slice(at));
5521     for (var i = 0; i < lines.length; ++i) { lines[i].parent = this$1; }
5522   },
5523
5524   // Used to iterate over a part of the tree.
5525   iterN: function iterN(at, n, op) {
5526     var this$1 = this;
5527
5528     for (var e = at + n; at < e; ++at)
5529       { if (op(this$1.lines[at])) { return true } }
5530   }
5531 };
5532
5533 function BranchChunk(children) {
5534   var this$1 = this;
5535
5536   this.children = children;
5537   var size = 0, height = 0;
5538   for (var i = 0; i < children.length; ++i) {
5539     var ch = children[i];
5540     size += ch.chunkSize(); height += ch.height;
5541     ch.parent = this$1;
5542   }
5543   this.size = size;
5544   this.height = height;
5545   this.parent = null;
5546 }
5547
5548 BranchChunk.prototype = {
5549   chunkSize: function chunkSize() { return this.size },
5550
5551   removeInner: function removeInner(at, n) {
5552     var this$1 = this;
5553
5554     this.size -= n;
5555     for (var i = 0; i < this.children.length; ++i) {
5556       var child = this$1.children[i], sz = child.chunkSize();
5557       if (at < sz) {
5558         var rm = Math.min(n, sz - at), oldHeight = child.height;
5559         child.removeInner(at, rm);
5560         this$1.height -= oldHeight - child.height;
5561         if (sz == rm) { this$1.children.splice(i--, 1); child.parent = null; }
5562         if ((n -= rm) == 0) { break }
5563         at = 0;
5564       } else { at -= sz; }
5565     }
5566     // If the result is smaller than 25 lines, ensure that it is a
5567     // single leaf node.
5568     if (this.size - n < 25 &&
5569         (this.children.length > 1 || !(this.children[0] instanceof LeafChunk))) {
5570       var lines = [];
5571       this.collapse(lines);
5572       this.children = [new LeafChunk(lines)];
5573       this.children[0].parent = this;
5574     }
5575   },
5576
5577   collapse: function collapse(lines) {
5578     var this$1 = this;
5579
5580     for (var i = 0; i < this.children.length; ++i) { this$1.children[i].collapse(lines); }
5581   },
5582
5583   insertInner: function insertInner(at, lines, height) {
5584     var this$1 = this;
5585
5586     this.size += lines.length;
5587     this.height += height;
5588     for (var i = 0; i < this.children.length; ++i) {
5589       var child = this$1.children[i], sz = child.chunkSize();
5590       if (at <= sz) {
5591         child.insertInner(at, lines, height);
5592         if (child.lines && child.lines.length > 50) {
5593           // To avoid memory thrashing when child.lines is huge (e.g. first view of a large file), it's never spliced.
5594           // Instead, small slices are taken. They're taken in order because sequential memory accesses are fastest.
5595           var remaining = child.lines.length % 25 + 25;
5596           for (var pos = remaining; pos < child.lines.length;) {
5597             var leaf = new LeafChunk(child.lines.slice(pos, pos += 25));
5598             child.height -= leaf.height;
5599             this$1.children.splice(++i, 0, leaf);
5600             leaf.parent = this$1;
5601           }
5602           child.lines = child.lines.slice(0, remaining);
5603           this$1.maybeSpill();
5604         }
5605         break
5606       }
5607       at -= sz;
5608     }
5609   },
5610
5611   // When a node has grown, check whether it should be split.
5612   maybeSpill: function maybeSpill() {
5613     if (this.children.length <= 10) { return }
5614     var me = this;
5615     do {
5616       var spilled = me.children.splice(me.children.length - 5, 5);
5617       var sibling = new BranchChunk(spilled);
5618       if (!me.parent) { // Become the parent node
5619         var copy = new BranchChunk(me.children);
5620         copy.parent = me;
5621         me.children = [copy, sibling];
5622         me = copy;
5623      } else {
5624         me.size -= sibling.size;
5625         me.height -= sibling.height;
5626         var myIndex = indexOf(me.parent.children, me);
5627         me.parent.children.splice(myIndex + 1, 0, sibling);
5628       }
5629       sibling.parent = me.parent;
5630     } while (me.children.length > 10)
5631     me.parent.maybeSpill();
5632   },
5633
5634   iterN: function iterN(at, n, op) {
5635     var this$1 = this;
5636
5637     for (var i = 0; i < this.children.length; ++i) {
5638       var child = this$1.children[i], sz = child.chunkSize();
5639       if (at < sz) {
5640         var used = Math.min(n, sz - at);
5641         if (child.iterN(at, used, op)) { return true }
5642         if ((n -= used) == 0) { break }
5643         at = 0;
5644       } else { at -= sz; }
5645     }
5646   }
5647 };
5648
5649 // Line widgets are block elements displayed above or below a line.
5650
5651 var LineWidget = function(doc, node, options) {
5652   var this$1 = this;
5653
5654   if (options) { for (var opt in options) { if (options.hasOwnProperty(opt))
5655     { this$1[opt] = options[opt]; } } }
5656   this.doc = doc;
5657   this.node = node;
5658 };
5659
5660 LineWidget.prototype.clear = function () {
5661     var this$1 = this;
5662
5663   var cm = this.doc.cm, ws = this.line.widgets, line = this.line, no = lineNo(line);
5664   if (no == null || !ws) { return }
5665   for (var i = 0; i < ws.length; ++i) { if (ws[i] == this$1) { ws.splice(i--, 1); } }
5666   if (!ws.length) { line.widgets = null; }
5667   var height = widgetHeight(this);
5668   updateLineHeight(line, Math.max(0, line.height - height));
5669   if (cm) {
5670     runInOp(cm, function () {
5671       adjustScrollWhenAboveVisible(cm, line, -height);
5672       regLineChange(cm, no, "widget");
5673     });
5674     signalLater(cm, "lineWidgetCleared", cm, this, no);
5675   }
5676 };
5677
5678 LineWidget.prototype.changed = function () {
5679     var this$1 = this;
5680
5681   var oldH = this.height, cm = this.doc.cm, line = this.line;
5682   this.height = null;
5683   var diff = widgetHeight(this) - oldH;
5684   if (!diff) { return }
5685   updateLineHeight(line, line.height + diff);
5686   if (cm) {
5687     runInOp(cm, function () {
5688       cm.curOp.forceUpdate = true;
5689       adjustScrollWhenAboveVisible(cm, line, diff);
5690       signalLater(cm, "lineWidgetChanged", cm, this$1, lineNo(line));
5691     });
5692   }
5693 };
5694 eventMixin(LineWidget);
5695
5696 function adjustScrollWhenAboveVisible(cm, line, diff) {
5697   if (heightAtLine(line) < ((cm.curOp && cm.curOp.scrollTop) || cm.doc.scrollTop))
5698     { addToScrollTop(cm, diff); }
5699 }
5700
5701 function addLineWidget(doc, handle, node, options) {
5702   var widget = new LineWidget(doc, node, options);
5703   var cm = doc.cm;
5704   if (cm && widget.noHScroll) { cm.display.alignWidgets = true; }
5705   changeLine(doc, handle, "widget", function (line) {
5706     var widgets = line.widgets || (line.widgets = []);
5707     if (widget.insertAt == null) { widgets.push(widget); }
5708     else { widgets.splice(Math.min(widgets.length - 1, Math.max(0, widget.insertAt)), 0, widget); }
5709     widget.line = line;
5710     if (cm && !lineIsHidden(doc, line)) {
5711       var aboveVisible = heightAtLine(line) < doc.scrollTop;
5712       updateLineHeight(line, line.height + widgetHeight(widget));
5713       if (aboveVisible) { addToScrollTop(cm, widget.height); }
5714       cm.curOp.forceUpdate = true;
5715     }
5716     return true
5717   });
5718   signalLater(cm, "lineWidgetAdded", cm, widget, typeof handle == "number" ? handle : lineNo(handle));
5719   return widget
5720 }
5721
5722 // TEXTMARKERS
5723
5724 // Created with markText and setBookmark methods. A TextMarker is a
5725 // handle that can be used to clear or find a marked position in the
5726 // document. Line objects hold arrays (markedSpans) containing
5727 // {from, to, marker} object pointing to such marker objects, and
5728 // indicating that such a marker is present on that line. Multiple
5729 // lines may point to the same marker when it spans across lines.
5730 // The spans will have null for their from/to properties when the
5731 // marker continues beyond the start/end of the line. Markers have
5732 // links back to the lines they currently touch.
5733
5734 // Collapsed markers have unique ids, in order to be able to order
5735 // them, which is needed for uniquely determining an outer marker
5736 // when they overlap (they may nest, but not partially overlap).
5737 var nextMarkerId = 0;
5738
5739 var TextMarker = function(doc, type) {
5740   this.lines = [];
5741   this.type = type;
5742   this.doc = doc;
5743   this.id = ++nextMarkerId;
5744 };
5745
5746 // Clear the marker.
5747 TextMarker.prototype.clear = function () {
5748     var this$1 = this;
5749
5750   if (this.explicitlyCleared) { return }
5751   var cm = this.doc.cm, withOp = cm && !cm.curOp;
5752   if (withOp) { startOperation(cm); }
5753   if (hasHandler(this, "clear")) {
5754     var found = this.find();
5755     if (found) { signalLater(this, "clear", found.from, found.to); }
5756   }
5757   var min = null, max = null;
5758   for (var i = 0; i < this.lines.length; ++i) {
5759     var line = this$1.lines[i];
5760     var span = getMarkedSpanFor(line.markedSpans, this$1);
5761     if (cm && !this$1.collapsed) { regLineChange(cm, lineNo(line), "text"); }
5762     else if (cm) {
5763       if (span.to != null) { max = lineNo(line); }
5764       if (span.from != null) { min = lineNo(line); }
5765     }
5766     line.markedSpans = removeMarkedSpan(line.markedSpans, span);
5767     if (span.from == null && this$1.collapsed && !lineIsHidden(this$1.doc, line) && cm)
5768       { updateLineHeight(line, textHeight(cm.display)); }
5769   }
5770   if (cm && this.collapsed && !cm.options.lineWrapping) { for (var i$1 = 0; i$1 < this.lines.length; ++i$1) {
5771     var visual = visualLine(this$1.lines[i$1]), len = lineLength(visual);
5772     if (len > cm.display.maxLineLength) {
5773       cm.display.maxLine = visual;
5774       cm.display.maxLineLength = len;
5775       cm.display.maxLineChanged = true;
5776     }
5777   } }
5778
5779   if (min != null && cm && this.collapsed) { regChange(cm, min, max + 1); }
5780   this.lines.length = 0;
5781   this.explicitlyCleared = true;
5782   if (this.atomic && this.doc.cantEdit) {
5783     this.doc.cantEdit = false;
5784     if (cm) { reCheckSelection(cm.doc); }
5785   }
5786   if (cm) { signalLater(cm, "markerCleared", cm, this, min, max); }
5787   if (withOp) { endOperation(cm); }
5788   if (this.parent) { this.parent.clear(); }
5789 };
5790
5791 // Find the position of the marker in the document. Returns a {from,
5792 // to} object by default. Side can be passed to get a specific side
5793 // -- 0 (both), -1 (left), or 1 (right). When lineObj is true, the
5794 // Pos objects returned contain a line object, rather than a line
5795 // number (used to prevent looking up the same line twice).
5796 TextMarker.prototype.find = function (side, lineObj) {
5797     var this$1 = this;
5798
5799   if (side == null && this.type == "bookmark") { side = 1; }
5800   var from, to;
5801   for (var i = 0; i < this.lines.length; ++i) {
5802     var line = this$1.lines[i];
5803     var span = getMarkedSpanFor(line.markedSpans, this$1);
5804     if (span.from != null) {
5805       from = Pos(lineObj ? line : lineNo(line), span.from);
5806       if (side == -1) { return from }
5807     }
5808     if (span.to != null) {
5809       to = Pos(lineObj ? line : lineNo(line), span.to);
5810       if (side == 1) { return to }
5811     }
5812   }
5813   return from && {from: from, to: to}
5814 };
5815
5816 // Signals that the marker's widget changed, and surrounding layout
5817 // should be recomputed.
5818 TextMarker.prototype.changed = function () {
5819     var this$1 = this;
5820
5821   var pos = this.find(-1, true), widget = this, cm = this.doc.cm;
5822   if (!pos || !cm) { return }
5823   runInOp(cm, function () {
5824     var line = pos.line, lineN = lineNo(pos.line);
5825     var view = findViewForLine(cm, lineN);
5826     if (view) {
5827       clearLineMeasurementCacheFor(view);
5828       cm.curOp.selectionChanged = cm.curOp.forceUpdate = true;
5829     }
5830     cm.curOp.updateMaxLine = true;
5831     if (!lineIsHidden(widget.doc, line) && widget.height != null) {
5832       var oldHeight = widget.height;
5833       widget.height = null;
5834       var dHeight = widgetHeight(widget) - oldHeight;
5835       if (dHeight)
5836         { updateLineHeight(line, line.height + dHeight); }
5837     }
5838     signalLater(cm, "markerChanged", cm, this$1);
5839   });
5840 };
5841
5842 TextMarker.prototype.attachLine = function (line) {
5843   if (!this.lines.length && this.doc.cm) {
5844     var op = this.doc.cm.curOp;
5845     if (!op.maybeHiddenMarkers || indexOf(op.maybeHiddenMarkers, this) == -1)
5846       { (op.maybeUnhiddenMarkers || (op.maybeUnhiddenMarkers = [])).push(this); }
5847   }
5848   this.lines.push(line);
5849 };
5850
5851 TextMarker.prototype.detachLine = function (line) {
5852   this.lines.splice(indexOf(this.lines, line), 1);
5853   if (!this.lines.length && this.doc.cm) {
5854     var op = this.doc.cm.curOp;(op.maybeHiddenMarkers || (op.maybeHiddenMarkers = [])).push(this);
5855   }
5856 };
5857 eventMixin(TextMarker);
5858
5859 // Create a marker, wire it up to the right lines, and
5860 function markText(doc, from, to, options, type) {
5861   // Shared markers (across linked documents) are handled separately
5862   // (markTextShared will call out to this again, once per
5863   // document).
5864   if (options && options.shared) { return markTextShared(doc, from, to, options, type) }
5865   // Ensure we are in an operation.
5866   if (doc.cm && !doc.cm.curOp) { return operation(doc.cm, markText)(doc, from, to, options, type) }
5867
5868   var marker = new TextMarker(doc, type), diff = cmp(from, to);
5869   if (options) { copyObj(options, marker, false); }
5870   // Don't connect empty markers unless clearWhenEmpty is false
5871   if (diff > 0 || diff == 0 && marker.clearWhenEmpty !== false)
5872     { return marker }
5873   if (marker.replacedWith) {
5874     // Showing up as a widget implies collapsed (widget replaces text)
5875     marker.collapsed = true;
5876     marker.widgetNode = eltP("span", [marker.replacedWith], "CodeMirror-widget");
5877     if (!options.handleMouseEvents) { marker.widgetNode.setAttribute("cm-ignore-events", "true"); }
5878     if (options.insertLeft) { marker.widgetNode.insertLeft = true; }
5879   }
5880   if (marker.collapsed) {
5881     if (conflictingCollapsedRange(doc, from.line, from, to, marker) ||
5882         from.line != to.line && conflictingCollapsedRange(doc, to.line, from, to, marker))
5883       { throw new Error("Inserting collapsed marker partially overlapping an existing one") }
5884     seeCollapsedSpans();
5885   }
5886
5887   if (marker.addToHistory)
5888     { addChangeToHistory(doc, {from: from, to: to, origin: "markText"}, doc.sel, NaN); }
5889
5890   var curLine = from.line, cm = doc.cm, updateMaxLine;
5891   doc.iter(curLine, to.line + 1, function (line) {
5892     if (cm && marker.collapsed && !cm.options.lineWrapping && visualLine(line) == cm.display.maxLine)
5893       { updateMaxLine = true; }
5894     if (marker.collapsed && curLine != from.line) { updateLineHeight(line, 0); }
5895     addMarkedSpan(line, new MarkedSpan(marker,
5896                                        curLine == from.line ? from.ch : null,
5897                                        curLine == to.line ? to.ch : null));
5898     ++curLine;
5899   });
5900   // lineIsHidden depends on the presence of the spans, so needs a second pass
5901   if (marker.collapsed) { doc.iter(from.line, to.line + 1, function (line) {
5902     if (lineIsHidden(doc, line)) { updateLineHeight(line, 0); }
5903   }); }
5904
5905   if (marker.clearOnEnter) { on(marker, "beforeCursorEnter", function () { return marker.clear(); }); }
5906
5907   if (marker.readOnly) {
5908     seeReadOnlySpans();
5909     if (doc.history.done.length || doc.history.undone.length)
5910       { doc.clearHistory(); }
5911   }
5912   if (marker.collapsed) {
5913     marker.id = ++nextMarkerId;
5914     marker.atomic = true;
5915   }
5916   if (cm) {
5917     // Sync editor state
5918     if (updateMaxLine) { cm.curOp.updateMaxLine = true; }
5919     if (marker.collapsed)
5920       { regChange(cm, from.line, to.line + 1); }
5921     else if (marker.className || marker.title || marker.startStyle || marker.endStyle || marker.css)
5922       { for (var i = from.line; i <= to.line; i++) { regLineChange(cm, i, "text"); } }
5923     if (marker.atomic) { reCheckSelection(cm.doc); }
5924     signalLater(cm, "markerAdded", cm, marker);
5925   }
5926   return marker
5927 }
5928
5929 // SHARED TEXTMARKERS
5930
5931 // A shared marker spans multiple linked documents. It is
5932 // implemented as a meta-marker-object controlling multiple normal
5933 // markers.
5934 var SharedTextMarker = function(markers, primary) {
5935   var this$1 = this;
5936
5937   this.markers = markers;
5938   this.primary = primary;
5939   for (var i = 0; i < markers.length; ++i)
5940     { markers[i].parent = this$1; }
5941 };
5942
5943 SharedTextMarker.prototype.clear = function () {
5944     var this$1 = this;
5945
5946   if (this.explicitlyCleared) { return }
5947   this.explicitlyCleared = true;
5948   for (var i = 0; i < this.markers.length; ++i)
5949     { this$1.markers[i].clear(); }
5950   signalLater(this, "clear");
5951 };
5952
5953 SharedTextMarker.prototype.find = function (side, lineObj) {
5954   return this.primary.find(side, lineObj)
5955 };
5956 eventMixin(SharedTextMarker);
5957
5958 function markTextShared(doc, from, to, options, type) {
5959   options = copyObj(options);
5960   options.shared = false;
5961   var markers = [markText(doc, from, to, options, type)], primary = markers[0];
5962   var widget = options.widgetNode;
5963   linkedDocs(doc, function (doc) {
5964     if (widget) { options.widgetNode = widget.cloneNode(true); }
5965     markers.push(markText(doc, clipPos(doc, from), clipPos(doc, to), options, type));
5966     for (var i = 0; i < doc.linked.length; ++i)
5967       { if (doc.linked[i].isParent) { return } }
5968     primary = lst(markers);
5969   });
5970   return new SharedTextMarker(markers, primary)
5971 }
5972
5973 function findSharedMarkers(doc) {
5974   return doc.findMarks(Pos(doc.first, 0), doc.clipPos(Pos(doc.lastLine())), function (m) { return m.parent; })
5975 }
5976
5977 function copySharedMarkers(doc, markers) {
5978   for (var i = 0; i < markers.length; i++) {
5979     var marker = markers[i], pos = marker.find();
5980     var mFrom = doc.clipPos(pos.from), mTo = doc.clipPos(pos.to);
5981     if (cmp(mFrom, mTo)) {
5982       var subMark = markText(doc, mFrom, mTo, marker.primary, marker.primary.type);
5983       marker.markers.push(subMark);
5984       subMark.parent = marker;
5985     }
5986   }
5987 }
5988
5989 function detachSharedMarkers(markers) {
5990   var loop = function ( i ) {
5991     var marker = markers[i], linked = [marker.primary.doc];
5992     linkedDocs(marker.primary.doc, function (d) { return linked.push(d); });
5993     for (var j = 0; j < marker.markers.length; j++) {
5994       var subMarker = marker.markers[j];
5995       if (indexOf(linked, subMarker.doc) == -1) {
5996         subMarker.parent = null;
5997         marker.markers.splice(j--, 1);
5998       }
5999     }
6000   };
6001
6002   for (var i = 0; i < markers.length; i++) loop( i );
6003 }
6004
6005 var nextDocId = 0;
6006 var Doc = function(text, mode, firstLine, lineSep, direction) {
6007   if (!(this instanceof Doc)) { return new Doc(text, mode, firstLine, lineSep, direction) }
6008   if (firstLine == null) { firstLine = 0; }
6009
6010   BranchChunk.call(this, [new LeafChunk([new Line("", null)])]);
6011   this.first = firstLine;
6012   this.scrollTop = this.scrollLeft = 0;
6013   this.cantEdit = false;
6014   this.cleanGeneration = 1;
6015   this.modeFrontier = this.highlightFrontier = firstLine;
6016   var start = Pos(firstLine, 0);
6017   this.sel = simpleSelection(start);
6018   this.history = new History(null);
6019   this.id = ++nextDocId;
6020   this.modeOption = mode;
6021   this.lineSep = lineSep;
6022   this.direction = (direction == "rtl") ? "rtl" : "ltr";
6023   this.extend = false;
6024
6025   if (typeof text == "string") { text = this.splitLines(text); }
6026   updateDoc(this, {from: start, to: start, text: text});
6027   setSelection(this, simpleSelection(start), sel_dontScroll);
6028 };
6029
6030 Doc.prototype = createObj(BranchChunk.prototype, {
6031   constructor: Doc,
6032   // Iterate over the document. Supports two forms -- with only one
6033   // argument, it calls that for each line in the document. With
6034   // three, it iterates over the range given by the first two (with
6035   // the second being non-inclusive).
6036   iter: function(from, to, op) {
6037     if (op) { this.iterN(from - this.first, to - from, op); }
6038     else { this.iterN(this.first, this.first + this.size, from); }
6039   },
6040
6041   // Non-public interface for adding and removing lines.
6042   insert: function(at, lines) {
6043     var height = 0;
6044     for (var i = 0; i < lines.length; ++i) { height += lines[i].height; }
6045     this.insertInner(at - this.first, lines, height);
6046   },
6047   remove: function(at, n) { this.removeInner(at - this.first, n); },
6048
6049   // From here, the methods are part of the public interface. Most
6050   // are also available from CodeMirror (editor) instances.
6051
6052   getValue: function(lineSep) {
6053     var lines = getLines(this, this.first, this.first + this.size);
6054     if (lineSep === false) { return lines }
6055     return lines.join(lineSep || this.lineSeparator())
6056   },
6057   setValue: docMethodOp(function(code) {
6058     var top = Pos(this.first, 0), last = this.first + this.size - 1;
6059     makeChange(this, {from: top, to: Pos(last, getLine(this, last).text.length),
6060                       text: this.splitLines(code), origin: "setValue", full: true}, true);
6061     if (this.cm) { scrollToCoords(this.cm, 0, 0); }
6062     setSelection(this, simpleSelection(top), sel_dontScroll);
6063   }),
6064   replaceRange: function(code, from, to, origin) {
6065     from = clipPos(this, from);
6066     to = to ? clipPos(this, to) : from;
6067     replaceRange(this, code, from, to, origin);
6068   },
6069   getRange: function(from, to, lineSep) {
6070     var lines = getBetween(this, clipPos(this, from), clipPos(this, to));
6071     if (lineSep === false) { return lines }
6072     return lines.join(lineSep || this.lineSeparator())
6073   },
6074
6075   getLine: function(line) {var l = this.getLineHandle(line); return l && l.text},
6076
6077   getLineHandle: function(line) {if (isLine(this, line)) { return getLine(this, line) }},
6078   getLineNumber: function(line) {return lineNo(line)},
6079
6080   getLineHandleVisualStart: function(line) {
6081     if (typeof line == "number") { line = getLine(this, line); }
6082     return visualLine(line)
6083   },
6084
6085   lineCount: function() {return this.size},
6086   firstLine: function() {return this.first},
6087   lastLine: function() {return this.first + this.size - 1},
6088
6089   clipPos: function(pos) {return clipPos(this, pos)},
6090
6091   getCursor: function(start) {
6092     var range$$1 = this.sel.primary(), pos;
6093     if (start == null || start == "head") { pos = range$$1.head; }
6094     else if (start == "anchor") { pos = range$$1.anchor; }
6095     else if (start == "end" || start == "to" || start === false) { pos = range$$1.to(); }
6096     else { pos = range$$1.from(); }
6097     return pos
6098   },
6099   listSelections: function() { return this.sel.ranges },
6100   somethingSelected: function() {return this.sel.somethingSelected()},
6101
6102   setCursor: docMethodOp(function(line, ch, options) {
6103     setSimpleSelection(this, clipPos(this, typeof line == "number" ? Pos(line, ch || 0) : line), null, options);
6104   }),
6105   setSelection: docMethodOp(function(anchor, head, options) {
6106     setSimpleSelection(this, clipPos(this, anchor), clipPos(this, head || anchor), options);
6107   }),
6108   extendSelection: docMethodOp(function(head, other, options) {
6109     extendSelection(this, clipPos(this, head), other && clipPos(this, other), options);
6110   }),
6111   extendSelections: docMethodOp(function(heads, options) {
6112     extendSelections(this, clipPosArray(this, heads), options);
6113   }),
6114   extendSelectionsBy: docMethodOp(function(f, options) {
6115     var heads = map(this.sel.ranges, f);
6116     extendSelections(this, clipPosArray(this, heads), options);
6117   }),
6118   setSelections: docMethodOp(function(ranges, primary, options) {
6119     var this$1 = this;
6120
6121     if (!ranges.length) { return }
6122     var out = [];
6123     for (var i = 0; i < ranges.length; i++)
6124       { out[i] = new Range(clipPos(this$1, ranges[i].anchor),
6125                          clipPos(this$1, ranges[i].head)); }
6126     if (primary == null) { primary = Math.min(ranges.length - 1, this.sel.primIndex); }
6127     setSelection(this, normalizeSelection(out, primary), options);
6128   }),
6129   addSelection: docMethodOp(function(anchor, head, options) {
6130     var ranges = this.sel.ranges.slice(0);
6131     ranges.push(new Range(clipPos(this, anchor), clipPos(this, head || anchor)));
6132     setSelection(this, normalizeSelection(ranges, ranges.length - 1), options);
6133   }),
6134
6135   getSelection: function(lineSep) {
6136     var this$1 = this;
6137
6138     var ranges = this.sel.ranges, lines;
6139     for (var i = 0; i < ranges.length; i++) {
6140       var sel = getBetween(this$1, ranges[i].from(), ranges[i].to());
6141       lines = lines ? lines.concat(sel) : sel;
6142     }
6143     if (lineSep === false) { return lines }
6144     else { return lines.join(lineSep || this.lineSeparator()) }
6145   },
6146   getSelections: function(lineSep) {
6147     var this$1 = this;
6148
6149     var parts = [], ranges = this.sel.ranges;
6150     for (var i = 0; i < ranges.length; i++) {
6151       var sel = getBetween(this$1, ranges[i].from(), ranges[i].to());
6152       if (lineSep !== false) { sel = sel.join(lineSep || this$1.lineSeparator()); }
6153       parts[i] = sel;
6154     }
6155     return parts
6156   },
6157   replaceSelection: function(code, collapse, origin) {
6158     var dup = [];
6159     for (var i = 0; i < this.sel.ranges.length; i++)
6160       { dup[i] = code; }
6161     this.replaceSelections(dup, collapse, origin || "+input");
6162   },
6163   replaceSelections: docMethodOp(function(code, collapse, origin) {
6164     var this$1 = this;
6165
6166     var changes = [], sel = this.sel;
6167     for (var i = 0; i < sel.ranges.length; i++) {
6168       var range$$1 = sel.ranges[i];
6169       changes[i] = {from: range$$1.from(), to: range$$1.to(), text: this$1.splitLines(code[i]), origin: origin};
6170     }
6171     var newSel = collapse && collapse != "end" && computeReplacedSel(this, changes, collapse);
6172     for (var i$1 = changes.length - 1; i$1 >= 0; i$1--)
6173       { makeChange(this$1, changes[i$1]); }
6174     if (newSel) { setSelectionReplaceHistory(this, newSel); }
6175     else if (this.cm) { ensureCursorVisible(this.cm); }
6176   }),
6177   undo: docMethodOp(function() {makeChangeFromHistory(this, "undo");}),
6178   redo: docMethodOp(function() {makeChangeFromHistory(this, "redo");}),
6179   undoSelection: docMethodOp(function() {makeChangeFromHistory(this, "undo", true);}),
6180   redoSelection: docMethodOp(function() {makeChangeFromHistory(this, "redo", true);}),
6181
6182   setExtending: function(val) {this.extend = val;},
6183   getExtending: function() {return this.extend},
6184
6185   historySize: function() {
6186     var hist = this.history, done = 0, undone = 0;
6187     for (var i = 0; i < hist.done.length; i++) { if (!hist.done[i].ranges) { ++done; } }
6188     for (var i$1 = 0; i$1 < hist.undone.length; i$1++) { if (!hist.undone[i$1].ranges) { ++undone; } }
6189     return {undo: done, redo: undone}
6190   },
6191   clearHistory: function() {this.history = new History(this.history.maxGeneration);},
6192
6193   markClean: function() {
6194     this.cleanGeneration = this.changeGeneration(true);
6195   },
6196   changeGeneration: function(forceSplit) {
6197     if (forceSplit)
6198       { this.history.lastOp = this.history.lastSelOp = this.history.lastOrigin = null; }
6199     return this.history.generation
6200   },
6201   isClean: function (gen) {
6202     return this.history.generation == (gen || this.cleanGeneration)
6203   },
6204
6205   getHistory: function() {
6206     return {done: copyHistoryArray(this.history.done),
6207             undone: copyHistoryArray(this.history.undone)}
6208   },
6209   setHistory: function(histData) {
6210     var hist = this.history = new History(this.history.maxGeneration);
6211     hist.done = copyHistoryArray(histData.done.slice(0), null, true);
6212     hist.undone = copyHistoryArray(histData.undone.slice(0), null, true);
6213   },
6214
6215   setGutterMarker: docMethodOp(function(line, gutterID, value) {
6216     return changeLine(this, line, "gutter", function (line) {
6217       var markers = line.gutterMarkers || (line.gutterMarkers = {});
6218       markers[gutterID] = value;
6219       if (!value && isEmpty(markers)) { line.gutterMarkers = null; }
6220       return true
6221     })
6222   }),
6223
6224   clearGutter: docMethodOp(function(gutterID) {
6225     var this$1 = this;
6226
6227     this.iter(function (line) {
6228       if (line.gutterMarkers && line.gutterMarkers[gutterID]) {
6229         changeLine(this$1, line, "gutter", function () {
6230           line.gutterMarkers[gutterID] = null;
6231           if (isEmpty(line.gutterMarkers)) { line.gutterMarkers = null; }
6232           return true
6233         });
6234       }
6235     });
6236   }),
6237
6238   lineInfo: function(line) {
6239     var n;
6240     if (typeof line == "number") {
6241       if (!isLine(this, line)) { return null }
6242       n = line;
6243       line = getLine(this, line);
6244       if (!line) { return null }
6245     } else {
6246       n = lineNo(line);
6247       if (n == null) { return null }
6248     }
6249     return {line: n, handle: line, text: line.text, gutterMarkers: line.gutterMarkers,
6250             textClass: line.textClass, bgClass: line.bgClass, wrapClass: line.wrapClass,
6251             widgets: line.widgets}
6252   },
6253
6254   addLineClass: docMethodOp(function(handle, where, cls) {
6255     return changeLine(this, handle, where == "gutter" ? "gutter" : "class", function (line) {
6256       var prop = where == "text" ? "textClass"
6257                : where == "background" ? "bgClass"
6258                : where == "gutter" ? "gutterClass" : "wrapClass";
6259       if (!line[prop]) { line[prop] = cls; }
6260       else if (classTest(cls).test(line[prop])) { return false }
6261       else { line[prop] += " " + cls; }
6262       return true
6263     })
6264   }),
6265   removeLineClass: docMethodOp(function(handle, where, cls) {
6266     return changeLine(this, handle, where == "gutter" ? "gutter" : "class", function (line) {
6267       var prop = where == "text" ? "textClass"
6268                : where == "background" ? "bgClass"
6269                : where == "gutter" ? "gutterClass" : "wrapClass";
6270       var cur = line[prop];
6271       if (!cur) { return false }
6272       else if (cls == null) { line[prop] = null; }
6273       else {
6274         var found = cur.match(classTest(cls));
6275         if (!found) { return false }
6276         var end = found.index + found[0].length;
6277         line[prop] = cur.slice(0, found.index) + (!found.index || end == cur.length ? "" : " ") + cur.slice(end) || null;
6278       }
6279       return true
6280     })
6281   }),
6282
6283   addLineWidget: docMethodOp(function(handle, node, options) {
6284     return addLineWidget(this, handle, node, options)
6285   }),
6286   removeLineWidget: function(widget) { widget.clear(); },
6287
6288   markText: function(from, to, options) {
6289     return markText(this, clipPos(this, from), clipPos(this, to), options, options && options.type || "range")
6290   },
6291   setBookmark: function(pos, options) {
6292     var realOpts = {replacedWith: options && (options.nodeType == null ? options.widget : options),
6293                     insertLeft: options && options.insertLeft,
6294                     clearWhenEmpty: false, shared: options && options.shared,
6295                     handleMouseEvents: options && options.handleMouseEvents};
6296     pos = clipPos(this, pos);
6297     return markText(this, pos, pos, realOpts, "bookmark")
6298   },
6299   findMarksAt: function(pos) {
6300     pos = clipPos(this, pos);
6301     var markers = [], spans = getLine(this, pos.line).markedSpans;
6302     if (spans) { for (var i = 0; i < spans.length; ++i) {
6303       var span = spans[i];
6304       if ((span.from == null || span.from <= pos.ch) &&
6305           (span.to == null || span.to >= pos.ch))
6306         { markers.push(span.marker.parent || span.marker); }
6307     } }
6308     return markers
6309   },
6310   findMarks: function(from, to, filter) {
6311     from = clipPos(this, from); to = clipPos(this, to);
6312     var found = [], lineNo$$1 = from.line;
6313     this.iter(from.line, to.line + 1, function (line) {
6314       var spans = line.markedSpans;
6315       if (spans) { for (var i = 0; i < spans.length; i++) {
6316         var span = spans[i];
6317         if (!(span.to != null && lineNo$$1 == from.line && from.ch >= span.to ||
6318               span.from == null && lineNo$$1 != from.line ||
6319               span.from != null && lineNo$$1 == to.line && span.from >= to.ch) &&
6320             (!filter || filter(span.marker)))
6321           { found.push(span.marker.parent || span.marker); }
6322       } }
6323       ++lineNo$$1;
6324     });
6325     return found
6326   },
6327   getAllMarks: function() {
6328     var markers = [];
6329     this.iter(function (line) {
6330       var sps = line.markedSpans;
6331       if (sps) { for (var i = 0; i < sps.length; ++i)
6332         { if (sps[i].from != null) { markers.push(sps[i].marker); } } }
6333     });
6334     return markers
6335   },
6336
6337   posFromIndex: function(off) {
6338     var ch, lineNo$$1 = this.first, sepSize = this.lineSeparator().length;
6339     this.iter(function (line) {
6340       var sz = line.text.length + sepSize;
6341       if (sz > off) { ch = off; return true }
6342       off -= sz;
6343       ++lineNo$$1;
6344     });
6345     return clipPos(this, Pos(lineNo$$1, ch))
6346   },
6347   indexFromPos: function (coords) {
6348     coords = clipPos(this, coords);
6349     var index = coords.ch;
6350     if (coords.line < this.first || coords.ch < 0) { return 0 }
6351     var sepSize = this.lineSeparator().length;
6352     this.iter(this.first, coords.line, function (line) { // iter aborts when callback returns a truthy value
6353       index += line.text.length + sepSize;
6354     });
6355     return index
6356   },
6357
6358   copy: function(copyHistory) {
6359     var doc = new Doc(getLines(this, this.first, this.first + this.size),
6360                       this.modeOption, this.first, this.lineSep, this.direction);
6361     doc.scrollTop = this.scrollTop; doc.scrollLeft = this.scrollLeft;
6362     doc.sel = this.sel;
6363     doc.extend = false;
6364     if (copyHistory) {
6365       doc.history.undoDepth = this.history.undoDepth;
6366       doc.setHistory(this.getHistory());
6367     }
6368     return doc
6369   },
6370
6371   linkedDoc: function(options) {
6372     if (!options) { options = {}; }
6373     var from = this.first, to = this.first + this.size;
6374     if (options.from != null && options.from > from) { from = options.from; }
6375     if (options.to != null && options.to < to) { to = options.to; }
6376     var copy = new Doc(getLines(this, from, to), options.mode || this.modeOption, from, this.lineSep, this.direction);
6377     if (options.sharedHist) { copy.history = this.history
6378     ; }(this.linked || (this.linked = [])).push({doc: copy, sharedHist: options.sharedHist});
6379     copy.linked = [{doc: this, isParent: true, sharedHist: options.sharedHist}];
6380     copySharedMarkers(copy, findSharedMarkers(this));
6381     return copy
6382   },
6383   unlinkDoc: function(other) {
6384     var this$1 = this;
6385
6386     if (other instanceof CodeMirror$1) { other = other.doc; }
6387     if (this.linked) { for (var i = 0; i < this.linked.length; ++i) {
6388       var link = this$1.linked[i];
6389       if (link.doc != other) { continue }
6390       this$1.linked.splice(i, 1);
6391       other.unlinkDoc(this$1);
6392       detachSharedMarkers(findSharedMarkers(this$1));
6393       break
6394     } }
6395     // If the histories were shared, split them again
6396     if (other.history == this.history) {
6397       var splitIds = [other.id];
6398       linkedDocs(other, function (doc) { return splitIds.push(doc.id); }, true);
6399       other.history = new History(null);
6400       other.history.done = copyHistoryArray(this.history.done, splitIds);
6401       other.history.undone = copyHistoryArray(this.history.undone, splitIds);
6402     }
6403   },
6404   iterLinkedDocs: function(f) {linkedDocs(this, f);},
6405
6406   getMode: function() {return this.mode},
6407   getEditor: function() {return this.cm},
6408
6409   splitLines: function(str) {
6410     if (this.lineSep) { return str.split(this.lineSep) }
6411     return splitLinesAuto(str)
6412   },
6413   lineSeparator: function() { return this.lineSep || "\n" },
6414
6415   setDirection: docMethodOp(function (dir) {
6416     if (dir != "rtl") { dir = "ltr"; }
6417     if (dir == this.direction) { return }
6418     this.direction = dir;
6419     this.iter(function (line) { return line.order = null; });
6420     if (this.cm) { directionChanged(this.cm); }
6421   })
6422 });
6423
6424 // Public alias.
6425 Doc.prototype.eachLine = Doc.prototype.iter;
6426
6427 // Kludge to work around strange IE behavior where it'll sometimes
6428 // re-fire a series of drag-related events right after the drop (#1551)
6429 var lastDrop = 0;
6430
6431 function onDrop(e) {
6432   var cm = this;
6433   clearDragCursor(cm);
6434   if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e))
6435     { return }
6436   e_preventDefault(e);
6437   if (ie) { lastDrop = +new Date; }
6438   var pos = posFromMouse(cm, e, true), files = e.dataTransfer.files;
6439   if (!pos || cm.isReadOnly()) { return }
6440   // Might be a file drop, in which case we simply extract the text
6441   // and insert it.
6442   if (files && files.length && window.FileReader && window.File) {
6443     var n = files.length, text = Array(n), read = 0;
6444     var loadFile = function (file, i) {
6445       if (cm.options.allowDropFileTypes &&
6446           indexOf(cm.options.allowDropFileTypes, file.type) == -1)
6447         { return }
6448
6449       var reader = new FileReader;
6450       reader.onload = operation(cm, function () {
6451         var content = reader.result;
6452         if (/[\x00-\x08\x0e-\x1f]{2}/.test(content)) { content = ""; }
6453         text[i] = content;
6454         if (++read == n) {
6455           pos = clipPos(cm.doc, pos);
6456           var change = {from: pos, to: pos,
6457                         text: cm.doc.splitLines(text.join(cm.doc.lineSeparator())),
6458                         origin: "paste"};
6459           makeChange(cm.doc, change);
6460           setSelectionReplaceHistory(cm.doc, simpleSelection(pos, changeEnd(change)));
6461         }
6462       });
6463       reader.readAsText(file);
6464     };
6465     for (var i = 0; i < n; ++i) { loadFile(files[i], i); }
6466   } else { // Normal drop
6467     // Don't do a replace if the drop happened inside of the selected text.
6468     if (cm.state.draggingText && cm.doc.sel.contains(pos) > -1) {
6469       cm.state.draggingText(e);
6470       // Ensure the editor is re-focused
6471       setTimeout(function () { return cm.display.input.focus(); }, 20);
6472       return
6473     }
6474     try {
6475       var text$1 = e.dataTransfer.getData("Text");
6476       if (text$1) {
6477         var selected;
6478         if (cm.state.draggingText && !cm.state.draggingText.copy)
6479           { selected = cm.listSelections(); }
6480         setSelectionNoUndo(cm.doc, simpleSelection(pos, pos));
6481         if (selected) { for (var i$1 = 0; i$1 < selected.length; ++i$1)
6482           { replaceRange(cm.doc, "", selected[i$1].anchor, selected[i$1].head, "drag"); } }
6483         cm.replaceSelection(text$1, "around", "paste");
6484         cm.display.input.focus();
6485       }
6486     }
6487     catch(e){}
6488   }
6489 }
6490
6491 function onDragStart(cm, e) {
6492   if (ie && (!cm.state.draggingText || +new Date - lastDrop < 100)) { e_stop(e); return }
6493   if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e)) { return }
6494
6495   e.dataTransfer.setData("Text", cm.getSelection());
6496   e.dataTransfer.effectAllowed = "copyMove";
6497
6498   // Use dummy image instead of default browsers image.
6499   // Recent Safari (~6.0.2) have a tendency to segfault when this happens, so we don't do it there.
6500   if (e.dataTransfer.setDragImage && !safari) {
6501     var img = elt("img", null, null, "position: fixed; left: 0; top: 0;");
6502     img.src = "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==";
6503     if (presto) {
6504       img.width = img.height = 1;
6505       cm.display.wrapper.appendChild(img);
6506       // Force a relayout, or Opera won't use our image for some obscure reason
6507       img._top = img.offsetTop;
6508     }
6509     e.dataTransfer.setDragImage(img, 0, 0);
6510     if (presto) { img.parentNode.removeChild(img); }
6511   }
6512 }
6513
6514 function onDragOver(cm, e) {
6515   var pos = posFromMouse(cm, e);
6516   if (!pos) { return }
6517   var frag = document.createDocumentFragment();
6518   drawSelectionCursor(cm, pos, frag);
6519   if (!cm.display.dragCursor) {
6520     cm.display.dragCursor = elt("div", null, "CodeMirror-cursors CodeMirror-dragcursors");
6521     cm.display.lineSpace.insertBefore(cm.display.dragCursor, cm.display.cursorDiv);
6522   }
6523   removeChildrenAndAdd(cm.display.dragCursor, frag);
6524 }
6525
6526 function clearDragCursor(cm) {
6527   if (cm.display.dragCursor) {
6528     cm.display.lineSpace.removeChild(cm.display.dragCursor);
6529     cm.display.dragCursor = null;
6530   }
6531 }
6532
6533 // These must be handled carefully, because naively registering a
6534 // handler for each editor will cause the editors to never be
6535 // garbage collected.
6536
6537 function forEachCodeMirror(f) {
6538   if (!document.getElementsByClassName) { return }
6539   var byClass = document.getElementsByClassName("CodeMirror");
6540   for (var i = 0; i < byClass.length; i++) {
6541     var cm = byClass[i].CodeMirror;
6542     if (cm) { f(cm); }
6543   }
6544 }
6545
6546 var globalsRegistered = false;
6547 function ensureGlobalHandlers() {
6548   if (globalsRegistered) { return }
6549   registerGlobalHandlers();
6550   globalsRegistered = true;
6551 }
6552 function registerGlobalHandlers() {
6553   // When the window resizes, we need to refresh active editors.
6554   var resizeTimer;
6555   on(window, "resize", function () {
6556     if (resizeTimer == null) { resizeTimer = setTimeout(function () {
6557       resizeTimer = null;
6558       forEachCodeMirror(onResize);
6559     }, 100); }
6560   });
6561   // When the window loses focus, we want to show the editor as blurred
6562   on(window, "blur", function () { return forEachCodeMirror(onBlur); });
6563 }
6564 // Called when the window resizes
6565 function onResize(cm) {
6566   var d = cm.display;
6567   if (d.lastWrapHeight == d.wrapper.clientHeight && d.lastWrapWidth == d.wrapper.clientWidth)
6568     { return }
6569   // Might be a text scaling operation, clear size caches.
6570   d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = null;
6571   d.scrollbarsClipped = false;
6572   cm.setSize();
6573 }
6574
6575 var keyNames = {
6576   3: "Enter", 8: "Backspace", 9: "Tab", 13: "Enter", 16: "Shift", 17: "Ctrl", 18: "Alt",
6577   19: "Pause", 20: "CapsLock", 27: "Esc", 32: "Space", 33: "PageUp", 34: "PageDown", 35: "End",
6578   36: "Home", 37: "Left", 38: "Up", 39: "Right", 40: "Down", 44: "PrintScrn", 45: "Insert",
6579   46: "Delete", 59: ";", 61: "=", 91: "Mod", 92: "Mod", 93: "Mod",
6580   106: "*", 107: "=", 109: "-", 110: ".", 111: "/", 127: "Delete",
6581   173: "-", 186: ";", 187: "=", 188: ",", 189: "-", 190: ".", 191: "/", 192: "`", 219: "[", 220: "\\",
6582   221: "]", 222: "'", 63232: "Up", 63233: "Down", 63234: "Left", 63235: "Right", 63272: "Delete",
6583   63273: "Home", 63275: "End", 63276: "PageUp", 63277: "PageDown", 63302: "Insert"
6584 };
6585
6586 // Number keys
6587 for (var i = 0; i < 10; i++) { keyNames[i + 48] = keyNames[i + 96] = String(i); }
6588 // Alphabetic keys
6589 for (var i$1 = 65; i$1 <= 90; i$1++) { keyNames[i$1] = String.fromCharCode(i$1); }
6590 // Function keys
6591 for (var i$2 = 1; i$2 <= 12; i$2++) { keyNames[i$2 + 111] = keyNames[i$2 + 63235] = "F" + i$2; }
6592
6593 var keyMap = {};
6594
6595 keyMap.basic = {
6596   "Left": "goCharLeft", "Right": "goCharRight", "Up": "goLineUp", "Down": "goLineDown",
6597   "End": "goLineEnd", "Home": "goLineStartSmart", "PageUp": "goPageUp", "PageDown": "goPageDown",
6598   "Delete": "delCharAfter", "Backspace": "delCharBefore", "Shift-Backspace": "delCharBefore",
6599   "Tab": "defaultTab", "Shift-Tab": "indentAuto",
6600   "Enter": "newlineAndIndent", "Insert": "toggleOverwrite",
6601   "Esc": "singleSelection"
6602 };
6603 // Note that the save and find-related commands aren't defined by
6604 // default. User code or addons can define them. Unknown commands
6605 // are simply ignored.
6606 keyMap.pcDefault = {
6607   "Ctrl-A": "selectAll", "Ctrl-D": "deleteLine", "Ctrl-Z": "undo", "Shift-Ctrl-Z": "redo", "Ctrl-Y": "redo",
6608   "Ctrl-Home": "goDocStart", "Ctrl-End": "goDocEnd", "Ctrl-Up": "goLineUp", "Ctrl-Down": "goLineDown",
6609   "Ctrl-Left": "goGroupLeft", "Ctrl-Right": "goGroupRight", "Alt-Left": "goLineStart", "Alt-Right": "goLineEnd",
6610   "Ctrl-Backspace": "delGroupBefore", "Ctrl-Delete": "delGroupAfter", "Ctrl-S": "save", "Ctrl-F": "find",
6611   "Ctrl-G": "findNext", "Shift-Ctrl-G": "findPrev", "Shift-Ctrl-F": "replace", "Shift-Ctrl-R": "replaceAll",
6612   "Ctrl-[": "indentLess", "Ctrl-]": "indentMore",
6613   "Ctrl-U": "undoSelection", "Shift-Ctrl-U": "redoSelection", "Alt-U": "redoSelection",
6614   fallthrough: "basic"
6615 };
6616 // Very basic readline/emacs-style bindings, which are standard on Mac.
6617 keyMap.emacsy = {
6618   "Ctrl-F": "goCharRight", "Ctrl-B": "goCharLeft", "Ctrl-P": "goLineUp", "Ctrl-N": "goLineDown",
6619   "Alt-F": "goWordRight", "Alt-B": "goWordLeft", "Ctrl-A": "goLineStart", "Ctrl-E": "goLineEnd",
6620   "Ctrl-V": "goPageDown", "Shift-Ctrl-V": "goPageUp", "Ctrl-D": "delCharAfter", "Ctrl-H": "delCharBefore",
6621   "Alt-D": "delWordAfter", "Alt-Backspace": "delWordBefore", "Ctrl-K": "killLine", "Ctrl-T": "transposeChars",
6622   "Ctrl-O": "openLine"
6623 };
6624 keyMap.macDefault = {
6625   "Cmd-A": "selectAll", "Cmd-D": "deleteLine", "Cmd-Z": "undo", "Shift-Cmd-Z": "redo", "Cmd-Y": "redo",
6626   "Cmd-Home": "goDocStart", "Cmd-Up": "goDocStart", "Cmd-End": "goDocEnd", "Cmd-Down": "goDocEnd", "Alt-Left": "goGroupLeft",
6627   "Alt-Right": "goGroupRight", "Cmd-Left": "goLineLeft", "Cmd-Right": "goLineRight", "Alt-Backspace": "delGroupBefore",
6628   "Ctrl-Alt-Backspace": "delGroupAfter", "Alt-Delete": "delGroupAfter", "Cmd-S": "save", "Cmd-F": "find",
6629   "Cmd-G": "findNext", "Shift-Cmd-G": "findPrev", "Cmd-Alt-F": "replace", "Shift-Cmd-Alt-F": "replaceAll",
6630   "Cmd-[": "indentLess", "Cmd-]": "indentMore", "Cmd-Backspace": "delWrappedLineLeft", "Cmd-Delete": "delWrappedLineRight",
6631   "Cmd-U": "undoSelection", "Shift-Cmd-U": "redoSelection", "Ctrl-Up": "goDocStart", "Ctrl-Down": "goDocEnd",
6632   fallthrough: ["basic", "emacsy"]
6633 };
6634 keyMap["default"] = mac ? keyMap.macDefault : keyMap.pcDefault;
6635
6636 // KEYMAP DISPATCH
6637
6638 function normalizeKeyName(name) {
6639   var parts = name.split(/-(?!$)/);
6640   name = parts[parts.length - 1];
6641   var alt, ctrl, shift, cmd;
6642   for (var i = 0; i < parts.length - 1; i++) {
6643     var mod = parts[i];
6644     if (/^(cmd|meta|m)$/i.test(mod)) { cmd = true; }
6645     else if (/^a(lt)?$/i.test(mod)) { alt = true; }
6646     else if (/^(c|ctrl|control)$/i.test(mod)) { ctrl = true; }
6647     else if (/^s(hift)?$/i.test(mod)) { shift = true; }
6648     else { throw new Error("Unrecognized modifier name: " + mod) }
6649   }
6650   if (alt) { name = "Alt-" + name; }
6651   if (ctrl) { name = "Ctrl-" + name; }
6652   if (cmd) { name = "Cmd-" + name; }
6653   if (shift) { name = "Shift-" + name; }
6654   return name
6655 }
6656
6657 // This is a kludge to keep keymaps mostly working as raw objects
6658 // (backwards compatibility) while at the same time support features
6659 // like normalization and multi-stroke key bindings. It compiles a
6660 // new normalized keymap, and then updates the old object to reflect
6661 // this.
6662 function normalizeKeyMap(keymap) {
6663   var copy = {};
6664   for (var keyname in keymap) { if (keymap.hasOwnProperty(keyname)) {
6665     var value = keymap[keyname];
6666     if (/^(name|fallthrough|(de|at)tach)$/.test(keyname)) { continue }
6667     if (value == "...") { delete keymap[keyname]; continue }
6668
6669     var keys = map(keyname.split(" "), normalizeKeyName);
6670     for (var i = 0; i < keys.length; i++) {
6671       var val = (void 0), name = (void 0);
6672       if (i == keys.length - 1) {
6673         name = keys.join(" ");
6674         val = value;
6675       } else {
6676         name = keys.slice(0, i + 1).join(" ");
6677         val = "...";
6678       }
6679       var prev = copy[name];
6680       if (!prev) { copy[name] = val; }
6681       else if (prev != val) { throw new Error("Inconsistent bindings for " + name) }
6682     }
6683     delete keymap[keyname];
6684   } }
6685   for (var prop in copy) { keymap[prop] = copy[prop]; }
6686   return keymap
6687 }
6688
6689 function lookupKey(key, map$$1, handle, context) {
6690   map$$1 = getKeyMap(map$$1);
6691   var found = map$$1.call ? map$$1.call(key, context) : map$$1[key];
6692   if (found === false) { return "nothing" }
6693   if (found === "...") { return "multi" }
6694   if (found != null && handle(found)) { return "handled" }
6695
6696   if (map$$1.fallthrough) {
6697     if (Object.prototype.toString.call(map$$1.fallthrough) != "[object Array]")
6698       { return lookupKey(key, map$$1.fallthrough, handle, context) }
6699     for (var i = 0; i < map$$1.fallthrough.length; i++) {
6700       var result = lookupKey(key, map$$1.fallthrough[i], handle, context);
6701       if (result) { return result }
6702     }
6703   }
6704 }
6705
6706 // Modifier key presses don't count as 'real' key presses for the
6707 // purpose of keymap fallthrough.
6708 function isModifierKey(value) {
6709   var name = typeof value == "string" ? value : keyNames[value.keyCode];
6710   return name == "Ctrl" || name == "Alt" || name == "Shift" || name == "Mod"
6711 }
6712
6713 function addModifierNames(name, event, noShift) {
6714   var base = name;
6715   if (event.altKey && base != "Alt") { name = "Alt-" + name; }
6716   if ((flipCtrlCmd ? event.metaKey : event.ctrlKey) && base != "Ctrl") { name = "Ctrl-" + name; }
6717   if ((flipCtrlCmd ? event.ctrlKey : event.metaKey) && base != "Cmd") { name = "Cmd-" + name; }
6718   if (!noShift && event.shiftKey && base != "Shift") { name = "Shift-" + name; }
6719   return name
6720 }
6721
6722 // Look up the name of a key as indicated by an event object.
6723 function keyName(event, noShift) {
6724   if (presto && event.keyCode == 34 && event["char"]) { return false }
6725   var name = keyNames[event.keyCode];
6726   if (name == null || event.altGraphKey) { return false }
6727   return addModifierNames(name, event, noShift)
6728 }
6729
6730 function getKeyMap(val) {
6731   return typeof val == "string" ? keyMap[val] : val
6732 }
6733
6734 // Helper for deleting text near the selection(s), used to implement
6735 // backspace, delete, and similar functionality.
6736 function deleteNearSelection(cm, compute) {
6737   var ranges = cm.doc.sel.ranges, kill = [];
6738   // Build up a set of ranges to kill first, merging overlapping
6739   // ranges.
6740   for (var i = 0; i < ranges.length; i++) {
6741     var toKill = compute(ranges[i]);
6742     while (kill.length && cmp(toKill.from, lst(kill).to) <= 0) {
6743       var replaced = kill.pop();
6744       if (cmp(replaced.from, toKill.from) < 0) {
6745         toKill.from = replaced.from;
6746         break
6747       }
6748     }
6749     kill.push(toKill);
6750   }
6751   // Next, remove those actual ranges.
6752   runInOp(cm, function () {
6753     for (var i = kill.length - 1; i >= 0; i--)
6754       { replaceRange(cm.doc, "", kill[i].from, kill[i].to, "+delete"); }
6755     ensureCursorVisible(cm);
6756   });
6757 }
6758
6759 // Commands are parameter-less actions that can be performed on an
6760 // editor, mostly used for keybindings.
6761 var commands = {
6762   selectAll: selectAll,
6763   singleSelection: function (cm) { return cm.setSelection(cm.getCursor("anchor"), cm.getCursor("head"), sel_dontScroll); },
6764   killLine: function (cm) { return deleteNearSelection(cm, function (range) {
6765     if (range.empty()) {
6766       var len = getLine(cm.doc, range.head.line).text.length;
6767       if (range.head.ch == len && range.head.line < cm.lastLine())
6768         { return {from: range.head, to: Pos(range.head.line + 1, 0)} }
6769       else
6770         { return {from: range.head, to: Pos(range.head.line, len)} }
6771     } else {
6772       return {from: range.from(), to: range.to()}
6773     }
6774   }); },
6775   deleteLine: function (cm) { return deleteNearSelection(cm, function (range) { return ({
6776     from: Pos(range.from().line, 0),
6777     to: clipPos(cm.doc, Pos(range.to().line + 1, 0))
6778   }); }); },
6779   delLineLeft: function (cm) { return deleteNearSelection(cm, function (range) { return ({
6780     from: Pos(range.from().line, 0), to: range.from()
6781   }); }); },
6782   delWrappedLineLeft: function (cm) { return deleteNearSelection(cm, function (range) {
6783     var top = cm.charCoords(range.head, "div").top + 5;
6784     var leftPos = cm.coordsChar({left: 0, top: top}, "div");
6785     return {from: leftPos, to: range.from()}
6786   }); },
6787   delWrappedLineRight: function (cm) { return deleteNearSelection(cm, function (range) {
6788     var top = cm.charCoords(range.head, "div").top + 5;
6789     var rightPos = cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, "div");
6790     return {from: range.from(), to: rightPos }
6791   }); },
6792   undo: function (cm) { return cm.undo(); },
6793   redo: function (cm) { return cm.redo(); },
6794   undoSelection: function (cm) { return cm.undoSelection(); },
6795   redoSelection: function (cm) { return cm.redoSelection(); },
6796   goDocStart: function (cm) { return cm.extendSelection(Pos(cm.firstLine(), 0)); },
6797   goDocEnd: function (cm) { return cm.extendSelection(Pos(cm.lastLine())); },
6798   goLineStart: function (cm) { return cm.extendSelectionsBy(function (range) { return lineStart(cm, range.head.line); },
6799     {origin: "+move", bias: 1}
6800   ); },
6801   goLineStartSmart: function (cm) { return cm.extendSelectionsBy(function (range) { return lineStartSmart(cm, range.head); },
6802     {origin: "+move", bias: 1}
6803   ); },
6804   goLineEnd: function (cm) { return cm.extendSelectionsBy(function (range) { return lineEnd(cm, range.head.line); },
6805     {origin: "+move", bias: -1}
6806   ); },
6807   goLineRight: function (cm) { return cm.extendSelectionsBy(function (range) {
6808     var top = cm.charCoords(range.head, "div").top + 5;
6809     return cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, "div")
6810   }, sel_move); },
6811   goLineLeft: function (cm) { return cm.extendSelectionsBy(function (range) {
6812     var top = cm.charCoords(range.head, "div").top + 5;
6813     return cm.coordsChar({left: 0, top: top}, "div")
6814   }, sel_move); },
6815   goLineLeftSmart: function (cm) { return cm.extendSelectionsBy(function (range) {
6816     var top = cm.charCoords(range.head, "div").top + 5;
6817     var pos = cm.coordsChar({left: 0, top: top}, "div");
6818     if (pos.ch < cm.getLine(pos.line).search(/\S/)) { return lineStartSmart(cm, range.head) }
6819     return pos
6820   }, sel_move); },
6821   goLineUp: function (cm) { return cm.moveV(-1, "line"); },
6822   goLineDown: function (cm) { return cm.moveV(1, "line"); },
6823   goPageUp: function (cm) { return cm.moveV(-1, "page"); },
6824   goPageDown: function (cm) { return cm.moveV(1, "page"); },
6825   goCharLeft: function (cm) { return cm.moveH(-1, "char"); },
6826   goCharRight: function (cm) { return cm.moveH(1, "char"); },
6827   goColumnLeft: function (cm) { return cm.moveH(-1, "column"); },
6828   goColumnRight: function (cm) { return cm.moveH(1, "column"); },
6829   goWordLeft: function (cm) { return cm.moveH(-1, "word"); },
6830   goGroupRight: function (cm) { return cm.moveH(1, "group"); },
6831   goGroupLeft: function (cm) { return cm.moveH(-1, "group"); },
6832   goWordRight: function (cm) { return cm.moveH(1, "word"); },
6833   delCharBefore: function (cm) { return cm.deleteH(-1, "char"); },
6834   delCharAfter: function (cm) { return cm.deleteH(1, "char"); },
6835   delWordBefore: function (cm) { return cm.deleteH(-1, "word"); },
6836   delWordAfter: function (cm) { return cm.deleteH(1, "word"); },
6837   delGroupBefore: function (cm) { return cm.deleteH(-1, "group"); },
6838   delGroupAfter: function (cm) { return cm.deleteH(1, "group"); },
6839   indentAuto: function (cm) { return cm.indentSelection("smart"); },
6840   indentMore: function (cm) { return cm.indentSelection("add"); },
6841   indentLess: function (cm) { return cm.indentSelection("subtract"); },
6842   insertTab: function (cm) { return cm.replaceSelection("\t"); },
6843   insertSoftTab: function (cm) {
6844     var spaces = [], ranges = cm.listSelections(), tabSize = cm.options.tabSize;
6845     for (var i = 0; i < ranges.length; i++) {
6846       var pos = ranges[i].from();
6847       var col = countColumn(cm.getLine(pos.line), pos.ch, tabSize);
6848       spaces.push(spaceStr(tabSize - col % tabSize));
6849     }
6850     cm.replaceSelections(spaces);
6851   },
6852   defaultTab: function (cm) {
6853     if (cm.somethingSelected()) { cm.indentSelection("add"); }
6854     else { cm.execCommand("insertTab"); }
6855   },
6856   // Swap the two chars left and right of each selection's head.
6857   // Move cursor behind the two swapped characters afterwards.
6858   //
6859   // Doesn't consider line feeds a character.
6860   // Doesn't scan more than one line above to find a character.
6861   // Doesn't do anything on an empty line.
6862   // Doesn't do anything with non-empty selections.
6863   transposeChars: function (cm) { return runInOp(cm, function () {
6864     var ranges = cm.listSelections(), newSel = [];
6865     for (var i = 0; i < ranges.length; i++) {
6866       if (!ranges[i].empty()) { continue }
6867       var cur = ranges[i].head, line = getLine(cm.doc, cur.line).text;
6868       if (line) {
6869         if (cur.ch == line.length) { cur = new Pos(cur.line, cur.ch - 1); }
6870         if (cur.ch > 0) {
6871           cur = new Pos(cur.line, cur.ch + 1);
6872           cm.replaceRange(line.charAt(cur.ch - 1) + line.charAt(cur.ch - 2),
6873                           Pos(cur.line, cur.ch - 2), cur, "+transpose");
6874         } else if (cur.line > cm.doc.first) {
6875           var prev = getLine(cm.doc, cur.line - 1).text;
6876           if (prev) {
6877             cur = new Pos(cur.line, 1);
6878             cm.replaceRange(line.charAt(0) + cm.doc.lineSeparator() +
6879                             prev.charAt(prev.length - 1),
6880                             Pos(cur.line - 1, prev.length - 1), cur, "+transpose");
6881           }
6882         }
6883       }
6884       newSel.push(new Range(cur, cur));
6885     }
6886     cm.setSelections(newSel);
6887   }); },
6888   newlineAndIndent: function (cm) { return runInOp(cm, function () {
6889     var sels = cm.listSelections();
6890     for (var i = sels.length - 1; i >= 0; i--)
6891       { cm.replaceRange(cm.doc.lineSeparator(), sels[i].anchor, sels[i].head, "+input"); }
6892     sels = cm.listSelections();
6893     for (var i$1 = 0; i$1 < sels.length; i$1++)
6894       { cm.indentLine(sels[i$1].from().line, null, true); }
6895     ensureCursorVisible(cm);
6896   }); },
6897   openLine: function (cm) { return cm.replaceSelection("\n", "start"); },
6898   toggleOverwrite: function (cm) { return cm.toggleOverwrite(); }
6899 };
6900
6901
6902 function lineStart(cm, lineN) {
6903   var line = getLine(cm.doc, lineN);
6904   var visual = visualLine(line);
6905   if (visual != line) { lineN = lineNo(visual); }
6906   return endOfLine(true, cm, visual, lineN, 1)
6907 }
6908 function lineEnd(cm, lineN) {
6909   var line = getLine(cm.doc, lineN);
6910   var visual = visualLineEnd(line);
6911   if (visual != line) { lineN = lineNo(visual); }
6912   return endOfLine(true, cm, line, lineN, -1)
6913 }
6914 function lineStartSmart(cm, pos) {
6915   var start = lineStart(cm, pos.line);
6916   var line = getLine(cm.doc, start.line);
6917   var order = getOrder(line, cm.doc.direction);
6918   if (!order || order[0].level == 0) {
6919     var firstNonWS = Math.max(0, line.text.search(/\S/));
6920     var inWS = pos.line == start.line && pos.ch <= firstNonWS && pos.ch;
6921     return Pos(start.line, inWS ? 0 : firstNonWS, start.sticky)
6922   }
6923   return start
6924 }
6925
6926 // Run a handler that was bound to a key.
6927 function doHandleBinding(cm, bound, dropShift) {
6928   if (typeof bound == "string") {
6929     bound = commands[bound];
6930     if (!bound) { return false }
6931   }
6932   // Ensure previous input has been read, so that the handler sees a
6933   // consistent view of the document
6934   cm.display.input.ensurePolled();
6935   var prevShift = cm.display.shift, done = false;
6936   try {
6937     if (cm.isReadOnly()) { cm.state.suppressEdits = true; }
6938     if (dropShift) { cm.display.shift = false; }
6939     done = bound(cm) != Pass;
6940   } finally {
6941     cm.display.shift = prevShift;
6942     cm.state.suppressEdits = false;
6943   }
6944   return done
6945 }
6946
6947 function lookupKeyForEditor(cm, name, handle) {
6948   for (var i = 0; i < cm.state.keyMaps.length; i++) {
6949     var result = lookupKey(name, cm.state.keyMaps[i], handle, cm);
6950     if (result) { return result }
6951   }
6952   return (cm.options.extraKeys && lookupKey(name, cm.options.extraKeys, handle, cm))
6953     || lookupKey(name, cm.options.keyMap, handle, cm)
6954 }
6955
6956 // Note that, despite the name, this function is also used to check
6957 // for bound mouse clicks.
6958
6959 var stopSeq = new Delayed;
6960 function dispatchKey(cm, name, e, handle) {
6961   var seq = cm.state.keySeq;
6962   if (seq) {
6963     if (isModifierKey(name)) { return "handled" }
6964     stopSeq.set(50, function () {
6965       if (cm.state.keySeq == seq) {
6966         cm.state.keySeq = null;
6967         cm.display.input.reset();
6968       }
6969     });
6970     name = seq + " " + name;
6971   }
6972   var result = lookupKeyForEditor(cm, name, handle);
6973
6974   if (result == "multi")
6975     { cm.state.keySeq = name; }
6976   if (result == "handled")
6977     { signalLater(cm, "keyHandled", cm, name, e); }
6978
6979   if (result == "handled" || result == "multi") {
6980     e_preventDefault(e);
6981     restartBlink(cm);
6982   }
6983
6984   if (seq && !result && /\'$/.test(name)) {
6985     e_preventDefault(e);
6986     return true
6987   }
6988   return !!result
6989 }
6990
6991 // Handle a key from the keydown event.
6992 function handleKeyBinding(cm, e) {
6993   var name = keyName(e, true);
6994   if (!name) { return false }
6995
6996   if (e.shiftKey && !cm.state.keySeq) {
6997     // First try to resolve full name (including 'Shift-'). Failing
6998     // that, see if there is a cursor-motion command (starting with
6999     // 'go') bound to the keyname without 'Shift-'.
7000     return dispatchKey(cm, "Shift-" + name, e, function (b) { return doHandleBinding(cm, b, true); })
7001         || dispatchKey(cm, name, e, function (b) {
7002              if (typeof b == "string" ? /^go[A-Z]/.test(b) : b.motion)
7003                { return doHandleBinding(cm, b) }
7004            })
7005   } else {
7006     return dispatchKey(cm, name, e, function (b) { return doHandleBinding(cm, b); })
7007   }
7008 }
7009
7010 // Handle a key from the keypress event
7011 function handleCharBinding(cm, e, ch) {
7012   return dispatchKey(cm, "'" + ch + "'", e, function (b) { return doHandleBinding(cm, b, true); })
7013 }
7014
7015 var lastStoppedKey = null;
7016 function onKeyDown(e) {
7017   var cm = this;
7018   cm.curOp.focus = activeElt();
7019   if (signalDOMEvent(cm, e)) { return }
7020   // IE does strange things with escape.
7021   if (ie && ie_version < 11 && e.keyCode == 27) { e.returnValue = false; }
7022   var code = e.keyCode;
7023   cm.display.shift = code == 16 || e.shiftKey;
7024   var handled = handleKeyBinding(cm, e);
7025   if (presto) {
7026     lastStoppedKey = handled ? code : null;
7027     // Opera has no cut event... we try to at least catch the key combo
7028     if (!handled && code == 88 && !hasCopyEvent && (mac ? e.metaKey : e.ctrlKey))
7029       { cm.replaceSelection("", null, "cut"); }
7030   }
7031
7032   // Turn mouse into crosshair when Alt is held on Mac.
7033   if (code == 18 && !/\bCodeMirror-crosshair\b/.test(cm.display.lineDiv.className))
7034     { showCrossHair(cm); }
7035 }
7036
7037 function showCrossHair(cm) {
7038   var lineDiv = cm.display.lineDiv;
7039   addClass(lineDiv, "CodeMirror-crosshair");
7040
7041   function up(e) {
7042     if (e.keyCode == 18 || !e.altKey) {
7043       rmClass(lineDiv, "CodeMirror-crosshair");
7044       off(document, "keyup", up);
7045       off(document, "mouseover", up);
7046     }
7047   }
7048   on(document, "keyup", up);
7049   on(document, "mouseover", up);
7050 }
7051
7052 function onKeyUp(e) {
7053   if (e.keyCode == 16) { this.doc.sel.shift = false; }
7054   signalDOMEvent(this, e);
7055 }
7056
7057 function onKeyPress(e) {
7058   var cm = this;
7059   if (eventInWidget(cm.display, e) || signalDOMEvent(cm, e) || e.ctrlKey && !e.altKey || mac && e.metaKey) { return }
7060   var keyCode = e.keyCode, charCode = e.charCode;
7061   if (presto && keyCode == lastStoppedKey) {lastStoppedKey = null; e_preventDefault(e); return}
7062   if ((presto && (!e.which || e.which < 10)) && handleKeyBinding(cm, e)) { return }
7063   var ch = String.fromCharCode(charCode == null ? keyCode : charCode);
7064   // Some browsers fire keypress events for backspace
7065   if (ch == "\x08") { return }
7066   if (handleCharBinding(cm, e, ch)) { return }
7067   cm.display.input.onKeyPress(e);
7068 }
7069
7070 var DOUBLECLICK_DELAY = 400;
7071
7072 var PastClick = function(time, pos, button) {
7073   this.time = time;
7074   this.pos = pos;
7075   this.button = button;
7076 };
7077
7078 PastClick.prototype.compare = function (time, pos, button) {
7079   return this.time + DOUBLECLICK_DELAY > time &&
7080     cmp(pos, this.pos) == 0 && button == this.button
7081 };
7082
7083 var lastClick;
7084 var lastDoubleClick;
7085 function clickRepeat(pos, button) {
7086   var now = +new Date;
7087   if (lastDoubleClick && lastDoubleClick.compare(now, pos, button)) {
7088     lastClick = lastDoubleClick = null;
7089     return "triple"
7090   } else if (lastClick && lastClick.compare(now, pos, button)) {
7091     lastDoubleClick = new PastClick(now, pos, button);
7092     lastClick = null;
7093     return "double"
7094   } else {
7095     lastClick = new PastClick(now, pos, button);
7096     lastDoubleClick = null;
7097     return "single"
7098   }
7099 }
7100
7101 // A mouse down can be a single click, double click, triple click,
7102 // start of selection drag, start of text drag, new cursor
7103 // (ctrl-click), rectangle drag (alt-drag), or xwin
7104 // middle-click-paste. Or it might be a click on something we should
7105 // not interfere with, such as a scrollbar or widget.
7106 function onMouseDown(e) {
7107   var cm = this, display = cm.display;
7108   if (signalDOMEvent(cm, e) || display.activeTouch && display.input.supportsTouch()) { return }
7109   display.input.ensurePolled();
7110   display.shift = e.shiftKey;
7111
7112   if (eventInWidget(display, e)) {
7113     if (!webkit) {
7114       // Briefly turn off draggability, to allow widgets to do
7115       // normal dragging things.
7116       display.scroller.draggable = false;
7117       setTimeout(function () { return display.scroller.draggable = true; }, 100);
7118     }
7119     return
7120   }
7121   if (clickInGutter(cm, e)) { return }
7122   var pos = posFromMouse(cm, e), button = e_button(e), repeat = pos ? clickRepeat(pos, button) : "single";
7123   window.focus();
7124
7125   // #3261: make sure, that we're not starting a second selection
7126   if (button == 1 && cm.state.selectingText)
7127     { cm.state.selectingText(e); }
7128
7129   if (pos && handleMappedButton(cm, button, pos, repeat, e)) { return }
7130
7131   if (button == 1) {
7132     if (pos) { leftButtonDown(cm, pos, repeat, e); }
7133     else if (e_target(e) == display.scroller) { e_preventDefault(e); }
7134   } else if (button == 2) {
7135     if (pos) { extendSelection(cm.doc, pos); }
7136     setTimeout(function () { return display.input.focus(); }, 20);
7137   } else if (button == 3) {
7138     if (captureRightClick) { onContextMenu(cm, e); }
7139     else { delayBlurEvent(cm); }
7140   }
7141 }
7142
7143 function handleMappedButton(cm, button, pos, repeat, event) {
7144   var name = "Click";
7145   if (repeat == "double") { name = "Double" + name; }
7146   else if (repeat == "triple") { name = "Triple" + name; }
7147   name = (button == 1 ? "Left" : button == 2 ? "Middle" : "Right") + name;
7148
7149   return dispatchKey(cm,  addModifierNames(name, event), event, function (bound) {
7150     if (typeof bound == "string") { bound = commands[bound]; }
7151     if (!bound) { return false }
7152     var done = false;
7153     try {
7154       if (cm.isReadOnly()) { cm.state.suppressEdits = true; }
7155       done = bound(cm, pos) != Pass;
7156     } finally {
7157       cm.state.suppressEdits = false;
7158     }
7159     return done
7160   })
7161 }
7162
7163 function configureMouse(cm, repeat, event) {
7164   var option = cm.getOption("configureMouse");
7165   var value = option ? option(cm, repeat, event) : {};
7166   if (value.unit == null) {
7167     var rect = chromeOS ? event.shiftKey && event.metaKey : event.altKey;
7168     value.unit = rect ? "rectangle" : repeat == "single" ? "char" : repeat == "double" ? "word" : "line";
7169   }
7170   if (value.extend == null || cm.doc.extend) { value.extend = cm.doc.extend || event.shiftKey; }
7171   if (value.addNew == null) { value.addNew = mac ? event.metaKey : event.ctrlKey; }
7172   if (value.moveOnDrag == null) { value.moveOnDrag = !(mac ? event.altKey : event.ctrlKey); }
7173   return value
7174 }
7175
7176 function leftButtonDown(cm, pos, repeat, event) {
7177   if (ie) { setTimeout(bind(ensureFocus, cm), 0); }
7178   else { cm.curOp.focus = activeElt(); }
7179
7180   var behavior = configureMouse(cm, repeat, event);
7181
7182   var sel = cm.doc.sel, contained;
7183   if (cm.options.dragDrop && dragAndDrop && !cm.isReadOnly() &&
7184       repeat == "single" && (contained = sel.contains(pos)) > -1 &&
7185       (cmp((contained = sel.ranges[contained]).from(), pos) < 0 || pos.xRel > 0) &&
7186       (cmp(contained.to(), pos) > 0 || pos.xRel < 0))
7187     { leftButtonStartDrag(cm, event, pos, behavior); }
7188   else
7189     { leftButtonSelect(cm, event, pos, behavior); }
7190 }
7191
7192 // Start a text drag. When it ends, see if any dragging actually
7193 // happen, and treat as a click if it didn't.
7194 function leftButtonStartDrag(cm, event, pos, behavior) {
7195   var display = cm.display, moved = false;
7196   var dragEnd = operation(cm, function (e) {
7197     if (webkit) { display.scroller.draggable = false; }
7198     cm.state.draggingText = false;
7199     off(document, "mouseup", dragEnd);
7200     off(document, "mousemove", mouseMove);
7201     off(display.scroller, "dragstart", dragStart);
7202     off(display.scroller, "drop", dragEnd);
7203     if (!moved) {
7204       e_preventDefault(e);
7205       if (!behavior.addNew)
7206         { extendSelection(cm.doc, pos, null, null, behavior.extend); }
7207       // Work around unexplainable focus problem in IE9 (#2127) and Chrome (#3081)
7208       if (webkit || ie && ie_version == 9)
7209         { setTimeout(function () {document.body.focus(); display.input.focus();}, 20); }
7210       else
7211         { display.input.focus(); }
7212     }
7213   });
7214   var mouseMove = function(e2) {
7215     moved = moved || Math.abs(event.clientX - e2.clientX) + Math.abs(event.clientY - e2.clientY) >= 10;
7216   };
7217   var dragStart = function () { return moved = true; };
7218   // Let the drag handler handle this.
7219   if (webkit) { display.scroller.draggable = true; }
7220   cm.state.draggingText = dragEnd;
7221   dragEnd.copy = !behavior.moveOnDrag;
7222   // IE's approach to draggable
7223   if (display.scroller.dragDrop) { display.scroller.dragDrop(); }
7224   on(document, "mouseup", dragEnd);
7225   on(document, "mousemove", mouseMove);
7226   on(display.scroller, "dragstart", dragStart);
7227   on(display.scroller, "drop", dragEnd);
7228
7229   delayBlurEvent(cm);
7230   setTimeout(function () { return display.input.focus(); }, 20);
7231 }
7232
7233 function rangeForUnit(cm, pos, unit) {
7234   if (unit == "char") { return new Range(pos, pos) }
7235   if (unit == "word") { return cm.findWordAt(pos) }
7236   if (unit == "line") { return new Range(Pos(pos.line, 0), clipPos(cm.doc, Pos(pos.line + 1, 0))) }
7237   var result = unit(cm, pos);
7238   return new Range(result.from, result.to)
7239 }
7240
7241 // Normal selection, as opposed to text dragging.
7242 function leftButtonSelect(cm, event, start, behavior) {
7243   var display = cm.display, doc = cm.doc;
7244   e_preventDefault(event);
7245
7246   var ourRange, ourIndex, startSel = doc.sel, ranges = startSel.ranges;
7247   if (behavior.addNew && !behavior.extend) {
7248     ourIndex = doc.sel.contains(start);
7249     if (ourIndex > -1)
7250       { ourRange = ranges[ourIndex]; }
7251     else
7252       { ourRange = new Range(start, start); }
7253   } else {
7254     ourRange = doc.sel.primary();
7255     ourIndex = doc.sel.primIndex;
7256   }
7257
7258   if (behavior.unit == "rectangle") {
7259     if (!behavior.addNew) { ourRange = new Range(start, start); }
7260     start = posFromMouse(cm, event, true, true);
7261     ourIndex = -1;
7262   } else {
7263     var range$$1 = rangeForUnit(cm, start, behavior.unit);
7264     if (behavior.extend)
7265       { ourRange = extendRange(ourRange, range$$1.anchor, range$$1.head, behavior.extend); }
7266     else
7267       { ourRange = range$$1; }
7268   }
7269
7270   if (!behavior.addNew) {
7271     ourIndex = 0;
7272     setSelection(doc, new Selection([ourRange], 0), sel_mouse);
7273     startSel = doc.sel;
7274   } else if (ourIndex == -1) {
7275     ourIndex = ranges.length;
7276     setSelection(doc, normalizeSelection(ranges.concat([ourRange]), ourIndex),
7277                  {scroll: false, origin: "*mouse"});
7278   } else if (ranges.length > 1 && ranges[ourIndex].empty() && behavior.unit == "char" && !behavior.extend) {
7279     setSelection(doc, normalizeSelection(ranges.slice(0, ourIndex).concat(ranges.slice(ourIndex + 1)), 0),
7280                  {scroll: false, origin: "*mouse"});
7281     startSel = doc.sel;
7282   } else {
7283     replaceOneSelection(doc, ourIndex, ourRange, sel_mouse);
7284   }
7285
7286   var lastPos = start;
7287   function extendTo(pos) {
7288     if (cmp(lastPos, pos) == 0) { return }
7289     lastPos = pos;
7290
7291     if (behavior.unit == "rectangle") {
7292       var ranges = [], tabSize = cm.options.tabSize;
7293       var startCol = countColumn(getLine(doc, start.line).text, start.ch, tabSize);
7294       var posCol = countColumn(getLine(doc, pos.line).text, pos.ch, tabSize);
7295       var left = Math.min(startCol, posCol), right = Math.max(startCol, posCol);
7296       for (var line = Math.min(start.line, pos.line), end = Math.min(cm.lastLine(), Math.max(start.line, pos.line));
7297            line <= end; line++) {
7298         var text = getLine(doc, line).text, leftPos = findColumn(text, left, tabSize);
7299         if (left == right)
7300           { ranges.push(new Range(Pos(line, leftPos), Pos(line, leftPos))); }
7301         else if (text.length > leftPos)
7302           { ranges.push(new Range(Pos(line, leftPos), Pos(line, findColumn(text, right, tabSize)))); }
7303       }
7304       if (!ranges.length) { ranges.push(new Range(start, start)); }
7305       setSelection(doc, normalizeSelection(startSel.ranges.slice(0, ourIndex).concat(ranges), ourIndex),
7306                    {origin: "*mouse", scroll: false});
7307       cm.scrollIntoView(pos);
7308     } else {
7309       var oldRange = ourRange;
7310       var range$$1 = rangeForUnit(cm, pos, behavior.unit);
7311       var anchor = oldRange.anchor, head;
7312       if (cmp(range$$1.anchor, anchor) > 0) {
7313         head = range$$1.head;
7314         anchor = minPos(oldRange.from(), range$$1.anchor);
7315       } else {
7316         head = range$$1.anchor;
7317         anchor = maxPos(oldRange.to(), range$$1.head);
7318       }
7319       var ranges$1 = startSel.ranges.slice(0);
7320       ranges$1[ourIndex] = new Range(clipPos(doc, anchor), head);
7321       setSelection(doc, normalizeSelection(ranges$1, ourIndex), sel_mouse);
7322     }
7323   }
7324
7325   var editorSize = display.wrapper.getBoundingClientRect();
7326   // Used to ensure timeout re-tries don't fire when another extend
7327   // happened in the meantime (clearTimeout isn't reliable -- at
7328   // least on Chrome, the timeouts still happen even when cleared,
7329   // if the clear happens after their scheduled firing time).
7330   var counter = 0;
7331
7332   function extend(e) {
7333     var curCount = ++counter;
7334     var cur = posFromMouse(cm, e, true, behavior.unit == "rectangle");
7335     if (!cur) { return }
7336     if (cmp(cur, lastPos) != 0) {
7337       cm.curOp.focus = activeElt();
7338       extendTo(cur);
7339       var visible = visibleLines(display, doc);
7340       if (cur.line >= visible.to || cur.line < visible.from)
7341         { setTimeout(operation(cm, function () {if (counter == curCount) { extend(e); }}), 150); }
7342     } else {
7343       var outside = e.clientY < editorSize.top ? -20 : e.clientY > editorSize.bottom ? 20 : 0;
7344       if (outside) { setTimeout(operation(cm, function () {
7345         if (counter != curCount) { return }
7346         display.scroller.scrollTop += outside;
7347         extend(e);
7348       }), 50); }
7349     }
7350   }
7351
7352   function done(e) {
7353     cm.state.selectingText = false;
7354     counter = Infinity;
7355     e_preventDefault(e);
7356     display.input.focus();
7357     off(document, "mousemove", move);
7358     off(document, "mouseup", up);
7359     doc.history.lastSelOrigin = null;
7360   }
7361
7362   var move = operation(cm, function (e) {
7363     if (!e_button(e)) { done(e); }
7364     else { extend(e); }
7365   });
7366   var up = operation(cm, done);
7367   cm.state.selectingText = up;
7368   on(document, "mousemove", move);
7369   on(document, "mouseup", up);
7370 }
7371
7372
7373 // Determines whether an event happened in the gutter, and fires the
7374 // handlers for the corresponding event.
7375 function gutterEvent(cm, e, type, prevent) {
7376   var mX, mY;
7377   try { mX = e.clientX; mY = e.clientY; }
7378   catch(e) { return false }
7379   if (mX >= Math.floor(cm.display.gutters.getBoundingClientRect().right)) { return false }
7380   if (prevent) { e_preventDefault(e); }
7381
7382   var display = cm.display;
7383   var lineBox = display.lineDiv.getBoundingClientRect();
7384
7385   if (mY > lineBox.bottom || !hasHandler(cm, type)) { return e_defaultPrevented(e) }
7386   mY -= lineBox.top - display.viewOffset;
7387
7388   for (var i = 0; i < cm.options.gutters.length; ++i) {
7389     var g = display.gutters.childNodes[i];
7390     if (g && g.getBoundingClientRect().right >= mX) {
7391       var line = lineAtHeight(cm.doc, mY);
7392       var gutter = cm.options.gutters[i];
7393       signal(cm, type, cm, line, gutter, e);
7394       return e_defaultPrevented(e)
7395     }
7396   }
7397 }
7398
7399 function clickInGutter(cm, e) {
7400   return gutterEvent(cm, e, "gutterClick", true)
7401 }
7402
7403 // CONTEXT MENU HANDLING
7404
7405 // To make the context menu work, we need to briefly unhide the
7406 // textarea (making it as unobtrusive as possible) to let the
7407 // right-click take effect on it.
7408 function onContextMenu(cm, e) {
7409   if (eventInWidget(cm.display, e) || contextMenuInGutter(cm, e)) { return }
7410   if (signalDOMEvent(cm, e, "contextmenu")) { return }
7411   cm.display.input.onContextMenu(e);
7412 }
7413
7414 function contextMenuInGutter(cm, e) {
7415   if (!hasHandler(cm, "gutterContextMenu")) { return false }
7416   return gutterEvent(cm, e, "gutterContextMenu", false)
7417 }
7418
7419 function themeChanged(cm) {
7420   cm.display.wrapper.className = cm.display.wrapper.className.replace(/\s*cm-s-\S+/g, "") +
7421     cm.options.theme.replace(/(^|\s)\s*/g, " cm-s-");
7422   clearCaches(cm);
7423 }
7424
7425 var Init = {toString: function(){return "CodeMirror.Init"}};
7426
7427 var defaults = {};
7428 var optionHandlers = {};
7429
7430 function defineOptions(CodeMirror) {
7431   var optionHandlers = CodeMirror.optionHandlers;
7432
7433   function option(name, deflt, handle, notOnInit) {
7434     CodeMirror.defaults[name] = deflt;
7435     if (handle) { optionHandlers[name] =
7436       notOnInit ? function (cm, val, old) {if (old != Init) { handle(cm, val, old); }} : handle; }
7437   }
7438
7439   CodeMirror.defineOption = option;
7440
7441   // Passed to option handlers when there is no old value.
7442   CodeMirror.Init = Init;
7443
7444   // These two are, on init, called from the constructor because they
7445   // have to be initialized before the editor can start at all.
7446   option("value", "", function (cm, val) { return cm.setValue(val); }, true);
7447   option("mode", null, function (cm, val) {
7448     cm.doc.modeOption = val;
7449     loadMode(cm);
7450   }, true);
7451
7452   option("indentUnit", 2, loadMode, true);
7453   option("indentWithTabs", false);
7454   option("smartIndent", true);
7455   option("tabSize", 4, function (cm) {
7456     resetModeState(cm);
7457     clearCaches(cm);
7458     regChange(cm);
7459   }, true);
7460   option("lineSeparator", null, function (cm, val) {
7461     cm.doc.lineSep = val;
7462     if (!val) { return }
7463     var newBreaks = [], lineNo = cm.doc.first;
7464     cm.doc.iter(function (line) {
7465       for (var pos = 0;;) {
7466         var found = line.text.indexOf(val, pos);
7467         if (found == -1) { break }
7468         pos = found + val.length;
7469         newBreaks.push(Pos(lineNo, found));
7470       }
7471       lineNo++;
7472     });
7473     for (var i = newBreaks.length - 1; i >= 0; i--)
7474       { replaceRange(cm.doc, val, newBreaks[i], Pos(newBreaks[i].line, newBreaks[i].ch + val.length)); }
7475   });
7476   option("specialChars", /[\u0000-\u001f\u007f-\u009f\u00ad\u061c\u200b-\u200f\u2028\u2029\ufeff]/g, function (cm, val, old) {
7477     cm.state.specialChars = new RegExp(val.source + (val.test("\t") ? "" : "|\t"), "g");
7478     if (old != Init) { cm.refresh(); }
7479   });
7480   option("specialCharPlaceholder", defaultSpecialCharPlaceholder, function (cm) { return cm.refresh(); }, true);
7481   option("electricChars", true);
7482   option("inputStyle", mobile ? "contenteditable" : "textarea", function () {
7483     throw new Error("inputStyle can not (yet) be changed in a running editor") // FIXME
7484   }, true);
7485   option("spellcheck", false, function (cm, val) { return cm.getInputField().spellcheck = val; }, true);
7486   option("rtlMoveVisually", !windows);
7487   option("wholeLineUpdateBefore", true);
7488
7489   option("theme", "default", function (cm) {
7490     themeChanged(cm);
7491     guttersChanged(cm);
7492   }, true);
7493   option("keyMap", "default", function (cm, val, old) {
7494     var next = getKeyMap(val);
7495     var prev = old != Init && getKeyMap(old);
7496     if (prev && prev.detach) { prev.detach(cm, next); }
7497     if (next.attach) { next.attach(cm, prev || null); }
7498   });
7499   option("extraKeys", null);
7500   option("configureMouse", null);
7501
7502   option("lineWrapping", false, wrappingChanged, true);
7503   option("gutters", [], function (cm) {
7504     setGuttersForLineNumbers(cm.options);
7505     guttersChanged(cm);
7506   }, true);
7507   option("fixedGutter", true, function (cm, val) {
7508     cm.display.gutters.style.left = val ? compensateForHScroll(cm.display) + "px" : "0";
7509     cm.refresh();
7510   }, true);
7511   option("coverGutterNextToScrollbar", false, function (cm) { return updateScrollbars(cm); }, true);
7512   option("scrollbarStyle", "native", function (cm) {
7513     initScrollbars(cm);
7514     updateScrollbars(cm);
7515     cm.display.scrollbars.setScrollTop(cm.doc.scrollTop);
7516     cm.display.scrollbars.setScrollLeft(cm.doc.scrollLeft);
7517   }, true);
7518   option("lineNumbers", false, function (cm) {
7519     setGuttersForLineNumbers(cm.options);
7520     guttersChanged(cm);
7521   }, true);
7522   option("firstLineNumber", 1, guttersChanged, true);
7523   option("lineNumberFormatter", function (integer) { return integer; }, guttersChanged, true);
7524   option("showCursorWhenSelecting", false, updateSelection, true);
7525
7526   option("resetSelectionOnContextMenu", true);
7527   option("lineWiseCopyCut", true);
7528   option("pasteLinesPerSelection", true);
7529
7530   option("readOnly", false, function (cm, val) {
7531     if (val == "nocursor") {
7532       onBlur(cm);
7533       cm.display.input.blur();
7534     }
7535     cm.display.input.readOnlyChanged(val);
7536   });
7537   option("disableInput", false, function (cm, val) {if (!val) { cm.display.input.reset(); }}, true);
7538   option("dragDrop", true, dragDropChanged);
7539   option("allowDropFileTypes", null);
7540
7541   option("cursorBlinkRate", 530);
7542   option("cursorScrollMargin", 0);
7543   option("cursorHeight", 1, updateSelection, true);
7544   option("singleCursorHeightPerLine", true, updateSelection, true);
7545   option("workTime", 100);
7546   option("workDelay", 100);
7547   option("flattenSpans", true, resetModeState, true);
7548   option("addModeClass", false, resetModeState, true);
7549   option("pollInterval", 100);
7550   option("undoDepth", 200, function (cm, val) { return cm.doc.history.undoDepth = val; });
7551   option("historyEventDelay", 1250);
7552   option("viewportMargin", 10, function (cm) { return cm.refresh(); }, true);
7553   option("maxHighlightLength", 10000, resetModeState, true);
7554   option("moveInputWithCursor", true, function (cm, val) {
7555     if (!val) { cm.display.input.resetPosition(); }
7556   });
7557
7558   option("tabindex", null, function (cm, val) { return cm.display.input.getField().tabIndex = val || ""; });
7559   option("autofocus", null);
7560   option("direction", "ltr", function (cm, val) { return cm.doc.setDirection(val); }, true);
7561 }
7562
7563 function guttersChanged(cm) {
7564   updateGutters(cm);
7565   regChange(cm);
7566   alignHorizontally(cm);
7567 }
7568
7569 function dragDropChanged(cm, value, old) {
7570   var wasOn = old && old != Init;
7571   if (!value != !wasOn) {
7572     var funcs = cm.display.dragFunctions;
7573     var toggle = value ? on : off;
7574     toggle(cm.display.scroller, "dragstart", funcs.start);
7575     toggle(cm.display.scroller, "dragenter", funcs.enter);
7576     toggle(cm.display.scroller, "dragover", funcs.over);
7577     toggle(cm.display.scroller, "dragleave", funcs.leave);
7578     toggle(cm.display.scroller, "drop", funcs.drop);
7579   }
7580 }
7581
7582 function wrappingChanged(cm) {
7583   if (cm.options.lineWrapping) {
7584     addClass(cm.display.wrapper, "CodeMirror-wrap");
7585     cm.display.sizer.style.minWidth = "";
7586     cm.display.sizerWidth = null;
7587   } else {
7588     rmClass(cm.display.wrapper, "CodeMirror-wrap");
7589     findMaxLine(cm);
7590   }
7591   estimateLineHeights(cm);
7592   regChange(cm);
7593   clearCaches(cm);
7594   setTimeout(function () { return updateScrollbars(cm); }, 100);
7595 }
7596
7597 // A CodeMirror instance represents an editor. This is the object
7598 // that user code is usually dealing with.
7599
7600 function CodeMirror$1(place, options) {
7601   var this$1 = this;
7602
7603   if (!(this instanceof CodeMirror$1)) { return new CodeMirror$1(place, options) }
7604
7605   this.options = options = options ? copyObj(options) : {};
7606   // Determine effective options based on given values and defaults.
7607   copyObj(defaults, options, false);
7608   setGuttersForLineNumbers(options);
7609
7610   var doc = options.value;
7611   if (typeof doc == "string") { doc = new Doc(doc, options.mode, null, options.lineSeparator, options.direction); }
7612   this.doc = doc;
7613
7614   var input = new CodeMirror$1.inputStyles[options.inputStyle](this);
7615   var display = this.display = new Display(place, doc, input);
7616   display.wrapper.CodeMirror = this;
7617   updateGutters(this);
7618   themeChanged(this);
7619   if (options.lineWrapping)
7620     { this.display.wrapper.className += " CodeMirror-wrap"; }
7621   initScrollbars(this);
7622
7623   this.state = {
7624     keyMaps: [],  // stores maps added by addKeyMap
7625     overlays: [], // highlighting overlays, as added by addOverlay
7626     modeGen: 0,   // bumped when mode/overlay changes, used to invalidate highlighting info
7627     overwrite: false,
7628     delayingBlurEvent: false,
7629     focused: false,
7630     suppressEdits: false, // used to disable editing during key handlers when in readOnly mode
7631     pasteIncoming: false, cutIncoming: false, // help recognize paste/cut edits in input.poll
7632     selectingText: false,
7633     draggingText: false,
7634     highlight: new Delayed(), // stores highlight worker timeout
7635     keySeq: null,  // Unfinished key sequence
7636     specialChars: null
7637   };
7638
7639   if (options.autofocus && !mobile) { display.input.focus(); }
7640
7641   // Override magic textarea content restore that IE sometimes does
7642   // on our hidden textarea on reload
7643   if (ie && ie_version < 11) { setTimeout(function () { return this$1.display.input.reset(true); }, 20); }
7644
7645   registerEventHandlers(this);
7646   ensureGlobalHandlers();
7647
7648   startOperation(this);
7649   this.curOp.forceUpdate = true;
7650   attachDoc(this, doc);
7651
7652   if ((options.autofocus && !mobile) || this.hasFocus())
7653     { setTimeout(bind(onFocus, this), 20); }
7654   else
7655     { onBlur(this); }
7656
7657   for (var opt in optionHandlers) { if (optionHandlers.hasOwnProperty(opt))
7658     { optionHandlers[opt](this$1, options[opt], Init); } }
7659   maybeUpdateLineNumberWidth(this);
7660   if (options.finishInit) { options.finishInit(this); }
7661   for (var i = 0; i < initHooks.length; ++i) { initHooks[i](this$1); }
7662   endOperation(this);
7663   // Suppress optimizelegibility in Webkit, since it breaks text
7664   // measuring on line wrapping boundaries.
7665   if (webkit && options.lineWrapping &&
7666       getComputedStyle(display.lineDiv).textRendering == "optimizelegibility")
7667     { display.lineDiv.style.textRendering = "auto"; }
7668 }
7669
7670 // The default configuration options.
7671 CodeMirror$1.defaults = defaults;
7672 // Functions to run when options are changed.
7673 CodeMirror$1.optionHandlers = optionHandlers;
7674
7675 // Attach the necessary event handlers when initializing the editor
7676 function registerEventHandlers(cm) {
7677   var d = cm.display;
7678   on(d.scroller, "mousedown", operation(cm, onMouseDown));
7679   // Older IE's will not fire a second mousedown for a double click
7680   if (ie && ie_version < 11)
7681     { on(d.scroller, "dblclick", operation(cm, function (e) {
7682       if (signalDOMEvent(cm, e)) { return }
7683       var pos = posFromMouse(cm, e);
7684       if (!pos || clickInGutter(cm, e) || eventInWidget(cm.display, e)) { return }
7685       e_preventDefault(e);
7686       var word = cm.findWordAt(pos);
7687       extendSelection(cm.doc, word.anchor, word.head);
7688     })); }
7689   else
7690     { on(d.scroller, "dblclick", function (e) { return signalDOMEvent(cm, e) || e_preventDefault(e); }); }
7691   // Some browsers fire contextmenu *after* opening the menu, at
7692   // which point we can't mess with it anymore. Context menu is
7693   // handled in onMouseDown for these browsers.
7694   if (!captureRightClick) { on(d.scroller, "contextmenu", function (e) { return onContextMenu(cm, e); }); }
7695
7696   // Used to suppress mouse event handling when a touch happens
7697   var touchFinished, prevTouch = {end: 0};
7698   function finishTouch() {
7699     if (d.activeTouch) {
7700       touchFinished = setTimeout(function () { return d.activeTouch = null; }, 1000);
7701       prevTouch = d.activeTouch;
7702       prevTouch.end = +new Date;
7703     }
7704   }
7705   function isMouseLikeTouchEvent(e) {
7706     if (e.touches.length != 1) { return false }
7707     var touch = e.touches[0];
7708     return touch.radiusX <= 1 && touch.radiusY <= 1
7709   }
7710   function farAway(touch, other) {
7711     if (other.left == null) { return true }
7712     var dx = other.left - touch.left, dy = other.top - touch.top;
7713     return dx * dx + dy * dy > 20 * 20
7714   }
7715   on(d.scroller, "touchstart", function (e) {
7716     if (!signalDOMEvent(cm, e) && !isMouseLikeTouchEvent(e)) {
7717       d.input.ensurePolled();
7718       clearTimeout(touchFinished);
7719       var now = +new Date;
7720       d.activeTouch = {start: now, moved: false,
7721                        prev: now - prevTouch.end <= 300 ? prevTouch : null};
7722       if (e.touches.length == 1) {
7723         d.activeTouch.left = e.touches[0].pageX;
7724         d.activeTouch.top = e.touches[0].pageY;
7725       }
7726     }
7727   });
7728   on(d.scroller, "touchmove", function () {
7729     if (d.activeTouch) { d.activeTouch.moved = true; }
7730   });
7731   on(d.scroller, "touchend", function (e) {
7732     var touch = d.activeTouch;
7733     if (touch && !eventInWidget(d, e) && touch.left != null &&
7734         !touch.moved && new Date - touch.start < 300) {
7735       var pos = cm.coordsChar(d.activeTouch, "page"), range;
7736       if (!touch.prev || farAway(touch, touch.prev)) // Single tap
7737         { range = new Range(pos, pos); }
7738       else if (!touch.prev.prev || farAway(touch, touch.prev.prev)) // Double tap
7739         { range = cm.findWordAt(pos); }
7740       else // Triple tap
7741         { range = new Range(Pos(pos.line, 0), clipPos(cm.doc, Pos(pos.line + 1, 0))); }
7742       cm.setSelection(range.anchor, range.head);
7743       cm.focus();
7744       e_preventDefault(e);
7745     }
7746     finishTouch();
7747   });
7748   on(d.scroller, "touchcancel", finishTouch);
7749
7750   // Sync scrolling between fake scrollbars and real scrollable
7751   // area, ensure viewport is updated when scrolling.
7752   on(d.scroller, "scroll", function () {
7753     if (d.scroller.clientHeight) {
7754       updateScrollTop(cm, d.scroller.scrollTop);
7755       setScrollLeft(cm, d.scroller.scrollLeft, true);
7756       signal(cm, "scroll", cm);
7757     }
7758   });
7759
7760   // Listen to wheel events in order to try and update the viewport on time.
7761   on(d.scroller, "mousewheel", function (e) { return onScrollWheel(cm, e); });
7762   on(d.scroller, "DOMMouseScroll", function (e) { return onScrollWheel(cm, e); });
7763
7764   // Prevent wrapper from ever scrolling
7765   on(d.wrapper, "scroll", function () { return d.wrapper.scrollTop = d.wrapper.scrollLeft = 0; });
7766
7767   d.dragFunctions = {
7768     enter: function (e) {if (!signalDOMEvent(cm, e)) { e_stop(e); }},
7769     over: function (e) {if (!signalDOMEvent(cm, e)) { onDragOver(cm, e); e_stop(e); }},
7770     start: function (e) { return onDragStart(cm, e); },
7771     drop: operation(cm, onDrop),
7772     leave: function (e) {if (!signalDOMEvent(cm, e)) { clearDragCursor(cm); }}
7773   };
7774
7775   var inp = d.input.getField();
7776   on(inp, "keyup", function (e) { return onKeyUp.call(cm, e); });
7777   on(inp, "keydown", operation(cm, onKeyDown));
7778   on(inp, "keypress", operation(cm, onKeyPress));
7779   on(inp, "focus", function (e) { return onFocus(cm, e); });
7780   on(inp, "blur", function (e) { return onBlur(cm, e); });
7781 }
7782
7783 var initHooks = [];
7784 CodeMirror$1.defineInitHook = function (f) { return initHooks.push(f); };
7785
7786 // Indent the given line. The how parameter can be "smart",
7787 // "add"/null, "subtract", or "prev". When aggressive is false
7788 // (typically set to true for forced single-line indents), empty
7789 // lines are not indented, and places where the mode returns Pass
7790 // are left alone.
7791 function indentLine(cm, n, how, aggressive) {
7792   var doc = cm.doc, state;
7793   if (how == null) { how = "add"; }
7794   if (how == "smart") {
7795     // Fall back to "prev" when the mode doesn't have an indentation
7796     // method.
7797     if (!doc.mode.indent) { how = "prev"; }
7798     else { state = getContextBefore(cm, n).state; }
7799   }
7800
7801   var tabSize = cm.options.tabSize;
7802   var line = getLine(doc, n), curSpace = countColumn(line.text, null, tabSize);
7803   if (line.stateAfter) { line.stateAfter = null; }
7804   var curSpaceString = line.text.match(/^\s*/)[0], indentation;
7805   if (!aggressive && !/\S/.test(line.text)) {
7806     indentation = 0;
7807     how = "not";
7808   } else if (how == "smart") {
7809     indentation = doc.mode.indent(state, line.text.slice(curSpaceString.length), line.text);
7810     if (indentation == Pass || indentation > 150) {
7811       if (!aggressive) { return }
7812       how = "prev";
7813     }
7814   }
7815   if (how == "prev") {
7816     if (n > doc.first) { indentation = countColumn(getLine(doc, n-1).text, null, tabSize); }
7817     else { indentation = 0; }
7818   } else if (how == "add") {
7819     indentation = curSpace + cm.options.indentUnit;
7820   } else if (how == "subtract") {
7821     indentation = curSpace - cm.options.indentUnit;
7822   } else if (typeof how == "number") {
7823     indentation = curSpace + how;
7824   }
7825   indentation = Math.max(0, indentation);
7826
7827   var indentString = "", pos = 0;
7828   if (cm.options.indentWithTabs)
7829     { for (var i = Math.floor(indentation / tabSize); i; --i) {pos += tabSize; indentString += "\t";} }
7830   if (pos < indentation) { indentString += spaceStr(indentation - pos); }
7831
7832   if (indentString != curSpaceString) {
7833     replaceRange(doc, indentString, Pos(n, 0), Pos(n, curSpaceString.length), "+input");
7834     line.stateAfter = null;
7835     return true
7836   } else {
7837     // Ensure that, if the cursor was in the whitespace at the start
7838     // of the line, it is moved to the end of that space.
7839     for (var i$1 = 0; i$1 < doc.sel.ranges.length; i$1++) {
7840       var range = doc.sel.ranges[i$1];
7841       if (range.head.line == n && range.head.ch < curSpaceString.length) {
7842         var pos$1 = Pos(n, curSpaceString.length);
7843         replaceOneSelection(doc, i$1, new Range(pos$1, pos$1));
7844         break
7845       }
7846     }
7847   }
7848 }
7849
7850 // This will be set to a {lineWise: bool, text: [string]} object, so
7851 // that, when pasting, we know what kind of selections the copied
7852 // text was made out of.
7853 var lastCopied = null;
7854
7855 function setLastCopied(newLastCopied) {
7856   lastCopied = newLastCopied;
7857 }
7858
7859 function applyTextInput(cm, inserted, deleted, sel, origin) {
7860   var doc = cm.doc;
7861   cm.display.shift = false;
7862   if (!sel) { sel = doc.sel; }
7863
7864   var paste = cm.state.pasteIncoming || origin == "paste";
7865   var textLines = splitLinesAuto(inserted), multiPaste = null;
7866   // When pasing N lines into N selections, insert one line per selection
7867   if (paste && sel.ranges.length > 1) {
7868     if (lastCopied && lastCopied.text.join("\n") == inserted) {
7869       if (sel.ranges.length % lastCopied.text.length == 0) {
7870         multiPaste = [];
7871         for (var i = 0; i < lastCopied.text.length; i++)
7872           { multiPaste.push(doc.splitLines(lastCopied.text[i])); }
7873       }
7874     } else if (textLines.length == sel.ranges.length && cm.options.pasteLinesPerSelection) {
7875       multiPaste = map(textLines, function (l) { return [l]; });
7876     }
7877   }
7878
7879   var updateInput;
7880   // Normal behavior is to insert the new text into every selection
7881   for (var i$1 = sel.ranges.length - 1; i$1 >= 0; i$1--) {
7882     var range$$1 = sel.ranges[i$1];
7883     var from = range$$1.from(), to = range$$1.to();
7884     if (range$$1.empty()) {
7885       if (deleted && deleted > 0) // Handle deletion
7886         { from = Pos(from.line, from.ch - deleted); }
7887       else if (cm.state.overwrite && !paste) // Handle overwrite
7888         { to = Pos(to.line, Math.min(getLine(doc, to.line).text.length, to.ch + lst(textLines).length)); }
7889       else if (lastCopied && lastCopied.lineWise && lastCopied.text.join("\n") == inserted)
7890         { from = to = Pos(from.line, 0); }
7891     }
7892     updateInput = cm.curOp.updateInput;
7893     var changeEvent = {from: from, to: to, text: multiPaste ? multiPaste[i$1 % multiPaste.length] : textLines,
7894                        origin: origin || (paste ? "paste" : cm.state.cutIncoming ? "cut" : "+input")};
7895     makeChange(cm.doc, changeEvent);
7896     signalLater(cm, "inputRead", cm, changeEvent);
7897   }
7898   if (inserted && !paste)
7899     { triggerElectric(cm, inserted); }
7900
7901   ensureCursorVisible(cm);
7902   cm.curOp.updateInput = updateInput;
7903   cm.curOp.typing = true;
7904   cm.state.pasteIncoming = cm.state.cutIncoming = false;
7905 }
7906
7907 function handlePaste(e, cm) {
7908   var pasted = e.clipboardData && e.clipboardData.getData("Text");
7909   if (pasted) {
7910     e.preventDefault();
7911     if (!cm.isReadOnly() && !cm.options.disableInput)
7912       { runInOp(cm, function () { return applyTextInput(cm, pasted, 0, null, "paste"); }); }
7913     return true
7914   }
7915 }
7916
7917 function triggerElectric(cm, inserted) {
7918   // When an 'electric' character is inserted, immediately trigger a reindent
7919   if (!cm.options.electricChars || !cm.options.smartIndent) { return }
7920   var sel = cm.doc.sel;
7921
7922   for (var i = sel.ranges.length - 1; i >= 0; i--) {
7923     var range$$1 = sel.ranges[i];
7924     if (range$$1.head.ch > 100 || (i && sel.ranges[i - 1].head.line == range$$1.head.line)) { continue }
7925     var mode = cm.getModeAt(range$$1.head);
7926     var indented = false;
7927     if (mode.electricChars) {
7928       for (var j = 0; j < mode.electricChars.length; j++)
7929         { if (inserted.indexOf(mode.electricChars.charAt(j)) > -1) {
7930           indented = indentLine(cm, range$$1.head.line, "smart");
7931           break
7932         } }
7933     } else if (mode.electricInput) {
7934       if (mode.electricInput.test(getLine(cm.doc, range$$1.head.line).text.slice(0, range$$1.head.ch)))
7935         { indented = indentLine(cm, range$$1.head.line, "smart"); }
7936     }
7937     if (indented) { signalLater(cm, "electricInput", cm, range$$1.head.line); }
7938   }
7939 }
7940
7941 function copyableRanges(cm) {
7942   var text = [], ranges = [];
7943   for (var i = 0; i < cm.doc.sel.ranges.length; i++) {
7944     var line = cm.doc.sel.ranges[i].head.line;
7945     var lineRange = {anchor: Pos(line, 0), head: Pos(line + 1, 0)};
7946     ranges.push(lineRange);
7947     text.push(cm.getRange(lineRange.anchor, lineRange.head));
7948   }
7949   return {text: text, ranges: ranges}
7950 }
7951
7952 function disableBrowserMagic(field, spellcheck) {
7953   field.setAttribute("autocorrect", "off");
7954   field.setAttribute("autocapitalize", "off");
7955   field.setAttribute("spellcheck", !!spellcheck);
7956 }
7957
7958 function hiddenTextarea() {
7959   var te = elt("textarea", null, null, "position: absolute; bottom: -1em; padding: 0; width: 1px; height: 1em; outline: none");
7960   var div = elt("div", [te], null, "overflow: hidden; position: relative; width: 3px; height: 0px;");
7961   // The textarea is kept positioned near the cursor to prevent the
7962   // fact that it'll be scrolled into view on input from scrolling
7963   // our fake cursor out of view. On webkit, when wrap=off, paste is
7964   // very slow. So make the area wide instead.
7965   if (webkit) { te.style.width = "1000px"; }
7966   else { te.setAttribute("wrap", "off"); }
7967   // If border: 0; -- iOS fails to open keyboard (issue #1287)
7968   if (ios) { te.style.border = "1px solid black"; }
7969   disableBrowserMagic(te);
7970   return div
7971 }
7972
7973 // The publicly visible API. Note that methodOp(f) means
7974 // 'wrap f in an operation, performed on its `this` parameter'.
7975
7976 // This is not the complete set of editor methods. Most of the
7977 // methods defined on the Doc type are also injected into
7978 // CodeMirror.prototype, for backwards compatibility and
7979 // convenience.
7980
7981 var addEditorMethods = function(CodeMirror) {
7982   var optionHandlers = CodeMirror.optionHandlers;
7983
7984   var helpers = CodeMirror.helpers = {};
7985
7986   CodeMirror.prototype = {
7987     constructor: CodeMirror,
7988     focus: function(){window.focus(); this.display.input.focus();},
7989
7990     setOption: function(option, value) {
7991       var options = this.options, old = options[option];
7992       if (options[option] == value && option != "mode") { return }
7993       options[option] = value;
7994       if (optionHandlers.hasOwnProperty(option))
7995         { operation(this, optionHandlers[option])(this, value, old); }
7996       signal(this, "optionChange", this, option);
7997     },
7998
7999     getOption: function(option) {return this.options[option]},
8000     getDoc: function() {return this.doc},
8001
8002     addKeyMap: function(map$$1, bottom) {
8003       this.state.keyMaps[bottom ? "push" : "unshift"](getKeyMap(map$$1));
8004     },
8005     removeKeyMap: function(map$$1) {
8006       var maps = this.state.keyMaps;
8007       for (var i = 0; i < maps.length; ++i)
8008         { if (maps[i] == map$$1 || maps[i].name == map$$1) {
8009           maps.splice(i, 1);
8010           return true
8011         } }
8012     },
8013
8014     addOverlay: methodOp(function(spec, options) {
8015       var mode = spec.token ? spec : CodeMirror.getMode(this.options, spec);
8016       if (mode.startState) { throw new Error("Overlays may not be stateful.") }
8017       insertSorted(this.state.overlays,
8018                    {mode: mode, modeSpec: spec, opaque: options && options.opaque,
8019                     priority: (options && options.priority) || 0},
8020                    function (overlay) { return overlay.priority; });
8021       this.state.modeGen++;
8022       regChange(this);
8023     }),
8024     removeOverlay: methodOp(function(spec) {
8025       var this$1 = this;
8026
8027       var overlays = this.state.overlays;
8028       for (var i = 0; i < overlays.length; ++i) {
8029         var cur = overlays[i].modeSpec;
8030         if (cur == spec || typeof spec == "string" && cur.name == spec) {
8031           overlays.splice(i, 1);
8032           this$1.state.modeGen++;
8033           regChange(this$1);
8034           return
8035         }
8036       }
8037     }),
8038
8039     indentLine: methodOp(function(n, dir, aggressive) {
8040       if (typeof dir != "string" && typeof dir != "number") {
8041         if (dir == null) { dir = this.options.smartIndent ? "smart" : "prev"; }
8042         else { dir = dir ? "add" : "subtract"; }
8043       }
8044       if (isLine(this.doc, n)) { indentLine(this, n, dir, aggressive); }
8045     }),
8046     indentSelection: methodOp(function(how) {
8047       var this$1 = this;
8048
8049       var ranges = this.doc.sel.ranges, end = -1;
8050       for (var i = 0; i < ranges.length; i++) {
8051         var range$$1 = ranges[i];
8052         if (!range$$1.empty()) {
8053           var from = range$$1.from(), to = range$$1.to();
8054           var start = Math.max(end, from.line);
8055           end = Math.min(this$1.lastLine(), to.line - (to.ch ? 0 : 1)) + 1;
8056           for (var j = start; j < end; ++j)
8057             { indentLine(this$1, j, how); }
8058           var newRanges = this$1.doc.sel.ranges;
8059           if (from.ch == 0 && ranges.length == newRanges.length && newRanges[i].from().ch > 0)
8060             { replaceOneSelection(this$1.doc, i, new Range(from, newRanges[i].to()), sel_dontScroll); }
8061         } else if (range$$1.head.line > end) {
8062           indentLine(this$1, range$$1.head.line, how, true);
8063           end = range$$1.head.line;
8064           if (i == this$1.doc.sel.primIndex) { ensureCursorVisible(this$1); }
8065         }
8066       }
8067     }),
8068
8069     // Fetch the parser token for a given character. Useful for hacks
8070     // that want to inspect the mode state (say, for completion).
8071     getTokenAt: function(pos, precise) {
8072       return takeToken(this, pos, precise)
8073     },
8074
8075     getLineTokens: function(line, precise) {
8076       return takeToken(this, Pos(line), precise, true)
8077     },
8078
8079     getTokenTypeAt: function(pos) {
8080       pos = clipPos(this.doc, pos);
8081       var styles = getLineStyles(this, getLine(this.doc, pos.line));
8082       var before = 0, after = (styles.length - 1) / 2, ch = pos.ch;
8083       var type;
8084       if (ch == 0) { type = styles[2]; }
8085       else { for (;;) {
8086         var mid = (before + after) >> 1;
8087         if ((mid ? styles[mid * 2 - 1] : 0) >= ch) { after = mid; }
8088         else if (styles[mid * 2 + 1] < ch) { before = mid + 1; }
8089         else { type = styles[mid * 2 + 2]; break }
8090       } }
8091       var cut = type ? type.indexOf("overlay ") : -1;
8092       return cut < 0 ? type : cut == 0 ? null : type.slice(0, cut - 1)
8093     },
8094
8095     getModeAt: function(pos) {
8096       var mode = this.doc.mode;
8097       if (!mode.innerMode) { return mode }
8098       return CodeMirror.innerMode(mode, this.getTokenAt(pos).state).mode
8099     },
8100
8101     getHelper: function(pos, type) {
8102       return this.getHelpers(pos, type)[0]
8103     },
8104
8105     getHelpers: function(pos, type) {
8106       var this$1 = this;
8107
8108       var found = [];
8109       if (!helpers.hasOwnProperty(type)) { return found }
8110       var help = helpers[type], mode = this.getModeAt(pos);
8111       if (typeof mode[type] == "string") {
8112         if (help[mode[type]]) { found.push(help[mode[type]]); }
8113       } else if (mode[type]) {
8114         for (var i = 0; i < mode[type].length; i++) {
8115           var val = help[mode[type][i]];
8116           if (val) { found.push(val); }
8117         }
8118       } else if (mode.helperType && help[mode.helperType]) {
8119         found.push(help[mode.helperType]);
8120       } else if (help[mode.name]) {
8121         found.push(help[mode.name]);
8122       }
8123       for (var i$1 = 0; i$1 < help._global.length; i$1++) {
8124         var cur = help._global[i$1];
8125         if (cur.pred(mode, this$1) && indexOf(found, cur.val) == -1)
8126           { found.push(cur.val); }
8127       }
8128       return found
8129     },
8130
8131     getStateAfter: function(line, precise) {
8132       var doc = this.doc;
8133       line = clipLine(doc, line == null ? doc.first + doc.size - 1: line);
8134       return getContextBefore(this, line + 1, precise).state
8135     },
8136
8137     cursorCoords: function(start, mode) {
8138       var pos, range$$1 = this.doc.sel.primary();
8139       if (start == null) { pos = range$$1.head; }
8140       else if (typeof start == "object") { pos = clipPos(this.doc, start); }
8141       else { pos = start ? range$$1.from() : range$$1.to(); }
8142       return cursorCoords(this, pos, mode || "page")
8143     },
8144
8145     charCoords: function(pos, mode) {
8146       return charCoords(this, clipPos(this.doc, pos), mode || "page")
8147     },
8148
8149     coordsChar: function(coords, mode) {
8150       coords = fromCoordSystem(this, coords, mode || "page");
8151       return coordsChar(this, coords.left, coords.top)
8152     },
8153
8154     lineAtHeight: function(height, mode) {
8155       height = fromCoordSystem(this, {top: height, left: 0}, mode || "page").top;
8156       return lineAtHeight(this.doc, height + this.display.viewOffset)
8157     },
8158     heightAtLine: function(line, mode, includeWidgets) {
8159       var end = false, lineObj;
8160       if (typeof line == "number") {
8161         var last = this.doc.first + this.doc.size - 1;
8162         if (line < this.doc.first) { line = this.doc.first; }
8163         else if (line > last) { line = last; end = true; }
8164         lineObj = getLine(this.doc, line);
8165       } else {
8166         lineObj = line;
8167       }
8168       return intoCoordSystem(this, lineObj, {top: 0, left: 0}, mode || "page", includeWidgets || end).top +
8169         (end ? this.doc.height - heightAtLine(lineObj) : 0)
8170     },
8171
8172     defaultTextHeight: function() { return textHeight(this.display) },
8173     defaultCharWidth: function() { return charWidth(this.display) },
8174
8175     getViewport: function() { return {from: this.display.viewFrom, to: this.display.viewTo}},
8176
8177     addWidget: function(pos, node, scroll, vert, horiz) {
8178       var display = this.display;
8179       pos = cursorCoords(this, clipPos(this.doc, pos));
8180       var top = pos.bottom, left = pos.left;
8181       node.style.position = "absolute";
8182       node.setAttribute("cm-ignore-events", "true");
8183       this.display.input.setUneditable(node);
8184       display.sizer.appendChild(node);
8185       if (vert == "over") {
8186         top = pos.top;
8187       } else if (vert == "above" || vert == "near") {
8188         var vspace = Math.max(display.wrapper.clientHeight, this.doc.height),
8189         hspace = Math.max(display.sizer.clientWidth, display.lineSpace.clientWidth);
8190         // Default to positioning above (if specified and possible); otherwise default to positioning below
8191         if ((vert == 'above' || pos.bottom + node.offsetHeight > vspace) && pos.top > node.offsetHeight)
8192           { top = pos.top - node.offsetHeight; }
8193         else if (pos.bottom + node.offsetHeight <= vspace)
8194           { top = pos.bottom; }
8195         if (left + node.offsetWidth > hspace)
8196           { left = hspace - node.offsetWidth; }
8197       }
8198       node.style.top = top + "px";
8199       node.style.left = node.style.right = "";
8200       if (horiz == "right") {
8201         left = display.sizer.clientWidth - node.offsetWidth;
8202         node.style.right = "0px";
8203       } else {
8204         if (horiz == "left") { left = 0; }
8205         else if (horiz == "middle") { left = (display.sizer.clientWidth - node.offsetWidth) / 2; }
8206         node.style.left = left + "px";
8207       }
8208       if (scroll)
8209         { scrollIntoView(this, {left: left, top: top, right: left + node.offsetWidth, bottom: top + node.offsetHeight}); }
8210     },
8211
8212     triggerOnKeyDown: methodOp(onKeyDown),
8213     triggerOnKeyPress: methodOp(onKeyPress),
8214     triggerOnKeyUp: onKeyUp,
8215     triggerOnMouseDown: methodOp(onMouseDown),
8216
8217     execCommand: function(cmd) {
8218       if (commands.hasOwnProperty(cmd))
8219         { return commands[cmd].call(null, this) }
8220     },
8221
8222     triggerElectric: methodOp(function(text) { triggerElectric(this, text); }),
8223
8224     findPosH: function(from, amount, unit, visually) {
8225       var this$1 = this;
8226
8227       var dir = 1;
8228       if (amount < 0) { dir = -1; amount = -amount; }
8229       var cur = clipPos(this.doc, from);
8230       for (var i = 0; i < amount; ++i) {
8231         cur = findPosH(this$1.doc, cur, dir, unit, visually);
8232         if (cur.hitSide) { break }
8233       }
8234       return cur
8235     },
8236
8237     moveH: methodOp(function(dir, unit) {
8238       var this$1 = this;
8239
8240       this.extendSelectionsBy(function (range$$1) {
8241         if (this$1.display.shift || this$1.doc.extend || range$$1.empty())
8242           { return findPosH(this$1.doc, range$$1.head, dir, unit, this$1.options.rtlMoveVisually) }
8243         else
8244           { return dir < 0 ? range$$1.from() : range$$1.to() }
8245       }, sel_move);
8246     }),
8247
8248     deleteH: methodOp(function(dir, unit) {
8249       var sel = this.doc.sel, doc = this.doc;
8250       if (sel.somethingSelected())
8251         { doc.replaceSelection("", null, "+delete"); }
8252       else
8253         { deleteNearSelection(this, function (range$$1) {
8254           var other = findPosH(doc, range$$1.head, dir, unit, false);
8255           return dir < 0 ? {from: other, to: range$$1.head} : {from: range$$1.head, to: other}
8256         }); }
8257     }),
8258
8259     findPosV: function(from, amount, unit, goalColumn) {
8260       var this$1 = this;
8261
8262       var dir = 1, x = goalColumn;
8263       if (amount < 0) { dir = -1; amount = -amount; }
8264       var cur = clipPos(this.doc, from);
8265       for (var i = 0; i < amount; ++i) {
8266         var coords = cursorCoords(this$1, cur, "div");
8267         if (x == null) { x = coords.left; }
8268         else { coords.left = x; }
8269         cur = findPosV(this$1, coords, dir, unit);
8270         if (cur.hitSide) { break }
8271       }
8272       return cur
8273     },
8274
8275     moveV: methodOp(function(dir, unit) {
8276       var this$1 = this;
8277
8278       var doc = this.doc, goals = [];
8279       var collapse = !this.display.shift && !doc.extend && doc.sel.somethingSelected();
8280       doc.extendSelectionsBy(function (range$$1) {
8281         if (collapse)
8282           { return dir < 0 ? range$$1.from() : range$$1.to() }
8283         var headPos = cursorCoords(this$1, range$$1.head, "div");
8284         if (range$$1.goalColumn != null) { headPos.left = range$$1.goalColumn; }
8285         goals.push(headPos.left);
8286         var pos = findPosV(this$1, headPos, dir, unit);
8287         if (unit == "page" && range$$1 == doc.sel.primary())
8288           { addToScrollTop(this$1, charCoords(this$1, pos, "div").top - headPos.top); }
8289         return pos
8290       }, sel_move);
8291       if (goals.length) { for (var i = 0; i < doc.sel.ranges.length; i++)
8292         { doc.sel.ranges[i].goalColumn = goals[i]; } }
8293     }),
8294
8295     // Find the word at the given position (as returned by coordsChar).
8296     findWordAt: function(pos) {
8297       var doc = this.doc, line = getLine(doc, pos.line).text;
8298       var start = pos.ch, end = pos.ch;
8299       if (line) {
8300         var helper = this.getHelper(pos, "wordChars");
8301         if ((pos.sticky == "before" || end == line.length) && start) { --start; } else { ++end; }
8302         var startChar = line.charAt(start);
8303         var check = isWordChar(startChar, helper)
8304           ? function (ch) { return isWordChar(ch, helper); }
8305           : /\s/.test(startChar) ? function (ch) { return /\s/.test(ch); }
8306           : function (ch) { return (!/\s/.test(ch) && !isWordChar(ch)); };
8307         while (start > 0 && check(line.charAt(start - 1))) { --start; }
8308         while (end < line.length && check(line.charAt(end))) { ++end; }
8309       }
8310       return new Range(Pos(pos.line, start), Pos(pos.line, end))
8311     },
8312
8313     toggleOverwrite: function(value) {
8314       if (value != null && value == this.state.overwrite) { return }
8315       if (this.state.overwrite = !this.state.overwrite)
8316         { addClass(this.display.cursorDiv, "CodeMirror-overwrite"); }
8317       else
8318         { rmClass(this.display.cursorDiv, "CodeMirror-overwrite"); }
8319
8320       signal(this, "overwriteToggle", this, this.state.overwrite);
8321     },
8322     hasFocus: function() { return this.display.input.getField() == activeElt() },
8323     isReadOnly: function() { return !!(this.options.readOnly || this.doc.cantEdit) },
8324
8325     scrollTo: methodOp(function (x, y) { scrollToCoords(this, x, y); }),
8326     getScrollInfo: function() {
8327       var scroller = this.display.scroller;
8328       return {left: scroller.scrollLeft, top: scroller.scrollTop,
8329               height: scroller.scrollHeight - scrollGap(this) - this.display.barHeight,
8330               width: scroller.scrollWidth - scrollGap(this) - this.display.barWidth,
8331               clientHeight: displayHeight(this), clientWidth: displayWidth(this)}
8332     },
8333
8334     scrollIntoView: methodOp(function(range$$1, margin) {
8335       if (range$$1 == null) {
8336         range$$1 = {from: this.doc.sel.primary().head, to: null};
8337         if (margin == null) { margin = this.options.cursorScrollMargin; }
8338       } else if (typeof range$$1 == "number") {
8339         range$$1 = {from: Pos(range$$1, 0), to: null};
8340       } else if (range$$1.from == null) {
8341         range$$1 = {from: range$$1, to: null};
8342       }
8343       if (!range$$1.to) { range$$1.to = range$$1.from; }
8344       range$$1.margin = margin || 0;
8345
8346       if (range$$1.from.line != null) {
8347         scrollToRange(this, range$$1);
8348       } else {
8349         scrollToCoordsRange(this, range$$1.from, range$$1.to, range$$1.margin);
8350       }
8351     }),
8352
8353     setSize: methodOp(function(width, height) {
8354       var this$1 = this;
8355
8356       var interpret = function (val) { return typeof val == "number" || /^\d+$/.test(String(val)) ? val + "px" : val; };
8357       if (width != null) { this.display.wrapper.style.width = interpret(width); }
8358       if (height != null) { this.display.wrapper.style.height = interpret(height); }
8359       if (this.options.lineWrapping) { clearLineMeasurementCache(this); }
8360       var lineNo$$1 = this.display.viewFrom;
8361       this.doc.iter(lineNo$$1, this.display.viewTo, function (line) {
8362         if (line.widgets) { for (var i = 0; i < line.widgets.length; i++)
8363           { if (line.widgets[i].noHScroll) { regLineChange(this$1, lineNo$$1, "widget"); break } } }
8364         ++lineNo$$1;
8365       });
8366       this.curOp.forceUpdate = true;
8367       signal(this, "refresh", this);
8368     }),
8369
8370     operation: function(f){return runInOp(this, f)},
8371
8372     refresh: methodOp(function() {
8373       var oldHeight = this.display.cachedTextHeight;
8374       regChange(this);
8375       this.curOp.forceUpdate = true;
8376       clearCaches(this);
8377       scrollToCoords(this, this.doc.scrollLeft, this.doc.scrollTop);
8378       updateGutterSpace(this);
8379       if (oldHeight == null || Math.abs(oldHeight - textHeight(this.display)) > .5)
8380         { estimateLineHeights(this); }
8381       signal(this, "refresh", this);
8382     }),
8383
8384     swapDoc: methodOp(function(doc) {
8385       var old = this.doc;
8386       old.cm = null;
8387       attachDoc(this, doc);
8388       clearCaches(this);
8389       this.display.input.reset();
8390       scrollToCoords(this, doc.scrollLeft, doc.scrollTop);
8391       this.curOp.forceScroll = true;
8392       signalLater(this, "swapDoc", this, old);
8393       return old
8394     }),
8395
8396     getInputField: function(){return this.display.input.getField()},
8397     getWrapperElement: function(){return this.display.wrapper},
8398     getScrollerElement: function(){return this.display.scroller},
8399     getGutterElement: function(){return this.display.gutters}
8400   };
8401   eventMixin(CodeMirror);
8402
8403   CodeMirror.registerHelper = function(type, name, value) {
8404     if (!helpers.hasOwnProperty(type)) { helpers[type] = CodeMirror[type] = {_global: []}; }
8405     helpers[type][name] = value;
8406   };
8407   CodeMirror.registerGlobalHelper = function(type, name, predicate, value) {
8408     CodeMirror.registerHelper(type, name, value);
8409     helpers[type]._global.push({pred: predicate, val: value});
8410   };
8411 };
8412
8413 // Used for horizontal relative motion. Dir is -1 or 1 (left or
8414 // right), unit can be "char", "column" (like char, but doesn't
8415 // cross line boundaries), "word" (across next word), or "group" (to
8416 // the start of next group of word or non-word-non-whitespace
8417 // chars). The visually param controls whether, in right-to-left
8418 // text, direction 1 means to move towards the next index in the
8419 // string, or towards the character to the right of the current
8420 // position. The resulting position will have a hitSide=true
8421 // property if it reached the end of the document.
8422 function findPosH(doc, pos, dir, unit, visually) {
8423   var oldPos = pos;
8424   var origDir = dir;
8425   var lineObj = getLine(doc, pos.line);
8426   function findNextLine() {
8427     var l = pos.line + dir;
8428     if (l < doc.first || l >= doc.first + doc.size) { return false }
8429     pos = new Pos(l, pos.ch, pos.sticky);
8430     return lineObj = getLine(doc, l)
8431   }
8432   function moveOnce(boundToLine) {
8433     var next;
8434     if (visually) {
8435       next = moveVisually(doc.cm, lineObj, pos, dir);
8436     } else {
8437       next = moveLogically(lineObj, pos, dir);
8438     }
8439     if (next == null) {
8440       if (!boundToLine && findNextLine())
8441         { pos = endOfLine(visually, doc.cm, lineObj, pos.line, dir); }
8442       else
8443         { return false }
8444     } else {
8445       pos = next;
8446     }
8447     return true
8448   }
8449
8450   if (unit == "char") {
8451     moveOnce();
8452   } else if (unit == "column") {
8453     moveOnce(true);
8454   } else if (unit == "word" || unit == "group") {
8455     var sawType = null, group = unit == "group";
8456     var helper = doc.cm && doc.cm.getHelper(pos, "wordChars");
8457     for (var first = true;; first = false) {
8458       if (dir < 0 && !moveOnce(!first)) { break }
8459       var cur = lineObj.text.charAt(pos.ch) || "\n";
8460       var type = isWordChar(cur, helper) ? "w"
8461         : group && cur == "\n" ? "n"
8462         : !group || /\s/.test(cur) ? null
8463         : "p";
8464       if (group && !first && !type) { type = "s"; }
8465       if (sawType && sawType != type) {
8466         if (dir < 0) {dir = 1; moveOnce(); pos.sticky = "after";}
8467         break
8468       }
8469
8470       if (type) { sawType = type; }
8471       if (dir > 0 && !moveOnce(!first)) { break }
8472     }
8473   }
8474   var result = skipAtomic(doc, pos, oldPos, origDir, true);
8475   if (equalCursorPos(oldPos, result)) { result.hitSide = true; }
8476   return result
8477 }
8478
8479 // For relative vertical movement. Dir may be -1 or 1. Unit can be
8480 // "page" or "line". The resulting position will have a hitSide=true
8481 // property if it reached the end of the document.
8482 function findPosV(cm, pos, dir, unit) {
8483   var doc = cm.doc, x = pos.left, y;
8484   if (unit == "page") {
8485     var pageSize = Math.min(cm.display.wrapper.clientHeight, window.innerHeight || document.documentElement.clientHeight);
8486     var moveAmount = Math.max(pageSize - .5 * textHeight(cm.display), 3);
8487     y = (dir > 0 ? pos.bottom : pos.top) + dir * moveAmount;
8488
8489   } else if (unit == "line") {
8490     y = dir > 0 ? pos.bottom + 3 : pos.top - 3;
8491   }
8492   var target;
8493   for (;;) {
8494     target = coordsChar(cm, x, y);
8495     if (!target.outside) { break }
8496     if (dir < 0 ? y <= 0 : y >= doc.height) { target.hitSide = true; break }
8497     y += dir * 5;
8498   }
8499   return target
8500 }
8501
8502 // CONTENTEDITABLE INPUT STYLE
8503
8504 var ContentEditableInput = function(cm) {
8505   this.cm = cm;
8506   this.lastAnchorNode = this.lastAnchorOffset = this.lastFocusNode = this.lastFocusOffset = null;
8507   this.polling = new Delayed();
8508   this.composing = null;
8509   this.gracePeriod = false;
8510   this.readDOMTimeout = null;
8511 };
8512
8513 ContentEditableInput.prototype.init = function (display) {
8514     var this$1 = this;
8515
8516   var input = this, cm = input.cm;
8517   var div = input.div = display.lineDiv;
8518   disableBrowserMagic(div, cm.options.spellcheck);
8519
8520   on(div, "paste", function (e) {
8521     if (signalDOMEvent(cm, e) || handlePaste(e, cm)) { return }
8522     // IE doesn't fire input events, so we schedule a read for the pasted content in this way
8523     if (ie_version <= 11) { setTimeout(operation(cm, function () { return this$1.updateFromDOM(); }), 20); }
8524   });
8525
8526   on(div, "compositionstart", function (e) {
8527     this$1.composing = {data: e.data, done: false};
8528   });
8529   on(div, "compositionupdate", function (e) {
8530     if (!this$1.composing) { this$1.composing = {data: e.data, done: false}; }
8531   });
8532   on(div, "compositionend", function (e) {
8533     if (this$1.composing) {
8534       if (e.data != this$1.composing.data) { this$1.readFromDOMSoon(); }
8535       this$1.composing.done = true;
8536     }
8537   });
8538
8539   on(div, "touchstart", function () { return input.forceCompositionEnd(); });
8540
8541   on(div, "input", function () {
8542     if (!this$1.composing) { this$1.readFromDOMSoon(); }
8543   });
8544
8545   function onCopyCut(e) {
8546     if (signalDOMEvent(cm, e)) { return }
8547     if (cm.somethingSelected()) {
8548       setLastCopied({lineWise: false, text: cm.getSelections()});
8549       if (e.type == "cut") { cm.replaceSelection("", null, "cut"); }
8550     } else if (!cm.options.lineWiseCopyCut) {
8551       return
8552     } else {
8553       var ranges = copyableRanges(cm);
8554       setLastCopied({lineWise: true, text: ranges.text});
8555       if (e.type == "cut") {
8556         cm.operation(function () {
8557           cm.setSelections(ranges.ranges, 0, sel_dontScroll);
8558           cm.replaceSelection("", null, "cut");
8559         });
8560       }
8561     }
8562     if (e.clipboardData) {
8563       e.clipboardData.clearData();
8564       var content = lastCopied.text.join("\n");
8565       // iOS exposes the clipboard API, but seems to discard content inserted into it
8566       e.clipboardData.setData("Text", content);
8567       if (e.clipboardData.getData("Text") == content) {
8568         e.preventDefault();
8569         return
8570       }
8571     }
8572     // Old-fashioned briefly-focus-a-textarea hack
8573     var kludge = hiddenTextarea(), te = kludge.firstChild;
8574     cm.display.lineSpace.insertBefore(kludge, cm.display.lineSpace.firstChild);
8575     te.value = lastCopied.text.join("\n");
8576     var hadFocus = document.activeElement;
8577     selectInput(te);
8578     setTimeout(function () {
8579       cm.display.lineSpace.removeChild(kludge);
8580       hadFocus.focus();
8581       if (hadFocus == div) { input.showPrimarySelection(); }
8582     }, 50);
8583   }
8584   on(div, "copy", onCopyCut);
8585   on(div, "cut", onCopyCut);
8586 };
8587
8588 ContentEditableInput.prototype.prepareSelection = function () {
8589   var result = prepareSelection(this.cm, false);
8590   result.focus = this.cm.state.focused;
8591   return result
8592 };
8593
8594 ContentEditableInput.prototype.showSelection = function (info, takeFocus) {
8595   if (!info || !this.cm.display.view.length) { return }
8596   if (info.focus || takeFocus) { this.showPrimarySelection(); }
8597   this.showMultipleSelections(info);
8598 };
8599
8600 ContentEditableInput.prototype.showPrimarySelection = function () {
8601   var sel = window.getSelection(), cm = this.cm, prim = cm.doc.sel.primary();
8602   var from = prim.from(), to = prim.to();
8603
8604   if (cm.display.viewTo == cm.display.viewFrom || from.line >= cm.display.viewTo || to.line < cm.display.viewFrom) {
8605     sel.removeAllRanges();
8606     return
8607   }
8608
8609   var curAnchor = domToPos(cm, sel.anchorNode, sel.anchorOffset);
8610   var curFocus = domToPos(cm, sel.focusNode, sel.focusOffset);
8611   if (curAnchor && !curAnchor.bad && curFocus && !curFocus.bad &&
8612       cmp(minPos(curAnchor, curFocus), from) == 0 &&
8613       cmp(maxPos(curAnchor, curFocus), to) == 0)
8614     { return }
8615
8616   var view = cm.display.view;
8617   var start = (from.line >= cm.display.viewFrom && posToDOM(cm, from)) ||
8618       {node: view[0].measure.map[2], offset: 0};
8619   var end = to.line < cm.display.viewTo && posToDOM(cm, to);
8620   if (!end) {
8621     var measure = view[view.length - 1].measure;
8622     var map$$1 = measure.maps ? measure.maps[measure.maps.length - 1] : measure.map;
8623     end = {node: map$$1[map$$1.length - 1], offset: map$$1[map$$1.length - 2] - map$$1[map$$1.length - 3]};
8624   }
8625
8626   if (!start || !end) {
8627     sel.removeAllRanges();
8628     return
8629   }
8630
8631   var old = sel.rangeCount && sel.getRangeAt(0), rng;
8632   try { rng = range(start.node, start.offset, end.offset, end.node); }
8633   catch(e) {} // Our model of the DOM might be outdated, in which case the range we try to set can be impossible
8634   if (rng) {
8635     if (!gecko && cm.state.focused) {
8636       sel.collapse(start.node, start.offset);
8637       if (!rng.collapsed) {
8638         sel.removeAllRanges();
8639         sel.addRange(rng);
8640       }
8641     } else {
8642       sel.removeAllRanges();
8643       sel.addRange(rng);
8644     }
8645     if (old && sel.anchorNode == null) { sel.addRange(old); }
8646     else if (gecko) { this.startGracePeriod(); }
8647   }
8648   this.rememberSelection();
8649 };
8650
8651 ContentEditableInput.prototype.startGracePeriod = function () {
8652     var this$1 = this;
8653
8654   clearTimeout(this.gracePeriod);
8655   this.gracePeriod = setTimeout(function () {
8656     this$1.gracePeriod = false;
8657     if (this$1.selectionChanged())
8658       { this$1.cm.operation(function () { return this$1.cm.curOp.selectionChanged = true; }); }
8659   }, 20);
8660 };
8661
8662 ContentEditableInput.prototype.showMultipleSelections = function (info) {
8663   removeChildrenAndAdd(this.cm.display.cursorDiv, info.cursors);
8664   removeChildrenAndAdd(this.cm.display.selectionDiv, info.selection);
8665 };
8666
8667 ContentEditableInput.prototype.rememberSelection = function () {
8668   var sel = window.getSelection();
8669   this.lastAnchorNode = sel.anchorNode; this.lastAnchorOffset = sel.anchorOffset;
8670   this.lastFocusNode = sel.focusNode; this.lastFocusOffset = sel.focusOffset;
8671 };
8672
8673 ContentEditableInput.prototype.selectionInEditor = function () {
8674   var sel = window.getSelection();
8675   if (!sel.rangeCount) { return false }
8676   var node = sel.getRangeAt(0).commonAncestorContainer;
8677   return contains(this.div, node)
8678 };
8679
8680 ContentEditableInput.prototype.focus = function () {
8681   if (this.cm.options.readOnly != "nocursor") {
8682     if (!this.selectionInEditor())
8683       { this.showSelection(this.prepareSelection(), true); }
8684     this.div.focus();
8685   }
8686 };
8687 ContentEditableInput.prototype.blur = function () { this.div.blur(); };
8688 ContentEditableInput.prototype.getField = function () { return this.div };
8689
8690 ContentEditableInput.prototype.supportsTouch = function () { return true };
8691
8692 ContentEditableInput.prototype.receivedFocus = function () {
8693   var input = this;
8694   if (this.selectionInEditor())
8695     { this.pollSelection(); }
8696   else
8697     { runInOp(this.cm, function () { return input.cm.curOp.selectionChanged = true; }); }
8698
8699   function poll() {
8700     if (input.cm.state.focused) {
8701       input.pollSelection();
8702       input.polling.set(input.cm.options.pollInterval, poll);
8703     }
8704   }
8705   this.polling.set(this.cm.options.pollInterval, poll);
8706 };
8707
8708 ContentEditableInput.prototype.selectionChanged = function () {
8709   var sel = window.getSelection();
8710   return sel.anchorNode != this.lastAnchorNode || sel.anchorOffset != this.lastAnchorOffset ||
8711     sel.focusNode != this.lastFocusNode || sel.focusOffset != this.lastFocusOffset
8712 };
8713
8714 ContentEditableInput.prototype.pollSelection = function () {
8715   if (this.readDOMTimeout != null || this.gracePeriod || !this.selectionChanged()) { return }
8716   var sel = window.getSelection(), cm = this.cm;
8717   // On Android Chrome (version 56, at least), backspacing into an
8718   // uneditable block element will put the cursor in that element,
8719   // and then, because it's not editable, hide the virtual keyboard.
8720   // Because Android doesn't allow us to actually detect backspace
8721   // presses in a sane way, this code checks for when that happens
8722   // and simulates a backspace press in this case.
8723   if (android && chrome && this.cm.options.gutters.length && isInGutter(sel.anchorNode)) {
8724     this.cm.triggerOnKeyDown({type: "keydown", keyCode: 8, preventDefault: Math.abs});
8725     this.blur();
8726     this.focus();
8727     return
8728   }
8729   if (this.composing) { return }
8730   this.rememberSelection();
8731   var anchor = domToPos(cm, sel.anchorNode, sel.anchorOffset);
8732   var head = domToPos(cm, sel.focusNode, sel.focusOffset);
8733   if (anchor && head) { runInOp(cm, function () {
8734     setSelection(cm.doc, simpleSelection(anchor, head), sel_dontScroll);
8735     if (anchor.bad || head.bad) { cm.curOp.selectionChanged = true; }
8736   }); }
8737 };
8738
8739 ContentEditableInput.prototype.pollContent = function () {
8740   if (this.readDOMTimeout != null) {
8741     clearTimeout(this.readDOMTimeout);
8742     this.readDOMTimeout = null;
8743   }
8744
8745   var cm = this.cm, display = cm.display, sel = cm.doc.sel.primary();
8746   var from = sel.from(), to = sel.to();
8747   if (from.ch == 0 && from.line > cm.firstLine())
8748     { from = Pos(from.line - 1, getLine(cm.doc, from.line - 1).length); }
8749   if (to.ch == getLine(cm.doc, to.line).text.length && to.line < cm.lastLine())
8750     { to = Pos(to.line + 1, 0); }
8751   if (from.line < display.viewFrom || to.line > display.viewTo - 1) { return false }
8752
8753   var fromIndex, fromLine, fromNode;
8754   if (from.line == display.viewFrom || (fromIndex = findViewIndex(cm, from.line)) == 0) {
8755     fromLine = lineNo(display.view[0].line);
8756     fromNode = display.view[0].node;
8757   } else {
8758     fromLine = lineNo(display.view[fromIndex].line);
8759     fromNode = display.view[fromIndex - 1].node.nextSibling;
8760   }
8761   var toIndex = findViewIndex(cm, to.line);
8762   var toLine, toNode;
8763   if (toIndex == display.view.length - 1) {
8764     toLine = display.viewTo - 1;
8765     toNode = display.lineDiv.lastChild;
8766   } else {
8767     toLine = lineNo(display.view[toIndex + 1].line) - 1;
8768     toNode = display.view[toIndex + 1].node.previousSibling;
8769   }
8770
8771   if (!fromNode) { return false }
8772   var newText = cm.doc.splitLines(domTextBetween(cm, fromNode, toNode, fromLine, toLine));
8773   var oldText = getBetween(cm.doc, Pos(fromLine, 0), Pos(toLine, getLine(cm.doc, toLine).text.length));
8774   while (newText.length > 1 && oldText.length > 1) {
8775     if (lst(newText) == lst(oldText)) { newText.pop(); oldText.pop(); toLine--; }
8776     else if (newText[0] == oldText[0]) { newText.shift(); oldText.shift(); fromLine++; }
8777     else { break }
8778   }
8779
8780   var cutFront = 0, cutEnd = 0;
8781   var newTop = newText[0], oldTop = oldText[0], maxCutFront = Math.min(newTop.length, oldTop.length);
8782   while (cutFront < maxCutFront && newTop.charCodeAt(cutFront) == oldTop.charCodeAt(cutFront))
8783     { ++cutFront; }
8784   var newBot = lst(newText), oldBot = lst(oldText);
8785   var maxCutEnd = Math.min(newBot.length - (newText.length == 1 ? cutFront : 0),
8786                            oldBot.length - (oldText.length == 1 ? cutFront : 0));
8787   while (cutEnd < maxCutEnd &&
8788          newBot.charCodeAt(newBot.length - cutEnd - 1) == oldBot.charCodeAt(oldBot.length - cutEnd - 1))
8789     { ++cutEnd; }
8790   // Try to move start of change to start of selection if ambiguous
8791   if (newText.length == 1 && oldText.length == 1 && fromLine == from.line) {
8792     while (cutFront && cutFront > from.ch &&
8793            newBot.charCodeAt(newBot.length - cutEnd - 1) == oldBot.charCodeAt(oldBot.length - cutEnd - 1)) {
8794       cutFront--;
8795       cutEnd++;
8796     }
8797   }
8798
8799   newText[newText.length - 1] = newBot.slice(0, newBot.length - cutEnd).replace(/^\u200b+/, "");
8800   newText[0] = newText[0].slice(cutFront).replace(/\u200b+$/, "");
8801
8802   var chFrom = Pos(fromLine, cutFront);
8803   var chTo = Pos(toLine, oldText.length ? lst(oldText).length - cutEnd : 0);
8804   if (newText.length > 1 || newText[0] || cmp(chFrom, chTo)) {
8805     replaceRange(cm.doc, newText, chFrom, chTo, "+input");
8806     return true
8807   }
8808 };
8809
8810 ContentEditableInput.prototype.ensurePolled = function () {
8811   this.forceCompositionEnd();
8812 };
8813 ContentEditableInput.prototype.reset = function () {
8814   this.forceCompositionEnd();
8815 };
8816 ContentEditableInput.prototype.forceCompositionEnd = function () {
8817   if (!this.composing) { return }
8818   clearTimeout(this.readDOMTimeout);
8819   this.composing = null;
8820   this.updateFromDOM();
8821   this.div.blur();
8822   this.div.focus();
8823 };
8824 ContentEditableInput.prototype.readFromDOMSoon = function () {
8825     var this$1 = this;
8826
8827   if (this.readDOMTimeout != null) { return }
8828   this.readDOMTimeout = setTimeout(function () {
8829     this$1.readDOMTimeout = null;
8830     if (this$1.composing) {
8831       if (this$1.composing.done) { this$1.composing = null; }
8832       else { return }
8833     }
8834     this$1.updateFromDOM();
8835   }, 80);
8836 };
8837
8838 ContentEditableInput.prototype.updateFromDOM = function () {
8839     var this$1 = this;
8840
8841   if (this.cm.isReadOnly() || !this.pollContent())
8842     { runInOp(this.cm, function () { return regChange(this$1.cm); }); }
8843 };
8844
8845 ContentEditableInput.prototype.setUneditable = function (node) {
8846   node.contentEditable = "false";
8847 };
8848
8849 ContentEditableInput.prototype.onKeyPress = function (e) {
8850   if (e.charCode == 0) { return }
8851   e.preventDefault();
8852   if (!this.cm.isReadOnly())
8853     { operation(this.cm, applyTextInput)(this.cm, String.fromCharCode(e.charCode == null ? e.keyCode : e.charCode), 0); }
8854 };
8855
8856 ContentEditableInput.prototype.readOnlyChanged = function (val) {
8857   this.div.contentEditable = String(val != "nocursor");
8858 };
8859
8860 ContentEditableInput.prototype.onContextMenu = function () {};
8861 ContentEditableInput.prototype.resetPosition = function () {};
8862
8863 ContentEditableInput.prototype.needsContentAttribute = true;
8864
8865 function posToDOM(cm, pos) {
8866   var view = findViewForLine(cm, pos.line);
8867   if (!view || view.hidden) { return null }
8868   var line = getLine(cm.doc, pos.line);
8869   var info = mapFromLineView(view, line, pos.line);
8870
8871   var order = getOrder(line, cm.doc.direction), side = "left";
8872   if (order) {
8873     var partPos = getBidiPartAt(order, pos.ch);
8874     side = partPos % 2 ? "right" : "left";
8875   }
8876   var result = nodeAndOffsetInLineMap(info.map, pos.ch, side);
8877   result.offset = result.collapse == "right" ? result.end : result.start;
8878   return result
8879 }
8880
8881 function isInGutter(node) {
8882   for (var scan = node; scan; scan = scan.parentNode)
8883     { if (/CodeMirror-gutter-wrapper/.test(scan.className)) { return true } }
8884   return false
8885 }
8886
8887 function badPos(pos, bad) { if (bad) { pos.bad = true; } return pos }
8888
8889 function domTextBetween(cm, from, to, fromLine, toLine) {
8890   var text = "", closing = false, lineSep = cm.doc.lineSeparator();
8891   function recognizeMarker(id) { return function (marker) { return marker.id == id; } }
8892   function close() {
8893     if (closing) {
8894       text += lineSep;
8895       closing = false;
8896     }
8897   }
8898   function addText(str) {
8899     if (str) {
8900       close();
8901       text += str;
8902     }
8903   }
8904   function walk(node) {
8905     if (node.nodeType == 1) {
8906       var cmText = node.getAttribute("cm-text");
8907       if (cmText != null) {
8908         addText(cmText || node.textContent.replace(/\u200b/g, ""));
8909         return
8910       }
8911       var markerID = node.getAttribute("cm-marker"), range$$1;
8912       if (markerID) {
8913         var found = cm.findMarks(Pos(fromLine, 0), Pos(toLine + 1, 0), recognizeMarker(+markerID));
8914         if (found.length && (range$$1 = found[0].find()))
8915           { addText(getBetween(cm.doc, range$$1.from, range$$1.to).join(lineSep)); }
8916         return
8917       }
8918       if (node.getAttribute("contenteditable") == "false") { return }
8919       var isBlock = /^(pre|div|p)$/i.test(node.nodeName);
8920       if (isBlock) { close(); }
8921       for (var i = 0; i < node.childNodes.length; i++)
8922         { walk(node.childNodes[i]); }
8923       if (isBlock) { closing = true; }
8924     } else if (node.nodeType == 3) {
8925       addText(node.nodeValue);
8926     }
8927   }
8928   for (;;) {
8929     walk(from);
8930     if (from == to) { break }
8931     from = from.nextSibling;
8932   }
8933   return text
8934 }
8935
8936 function domToPos(cm, node, offset) {
8937   var lineNode;
8938   if (node == cm.display.lineDiv) {
8939     lineNode = cm.display.lineDiv.childNodes[offset];
8940     if (!lineNode) { return badPos(cm.clipPos(Pos(cm.display.viewTo - 1)), true) }
8941     node = null; offset = 0;
8942   } else {
8943     for (lineNode = node;; lineNode = lineNode.parentNode) {
8944       if (!lineNode || lineNode == cm.display.lineDiv) { return null }
8945       if (lineNode.parentNode && lineNode.parentNode == cm.display.lineDiv) { break }
8946     }
8947   }
8948   for (var i = 0; i < cm.display.view.length; i++) {
8949     var lineView = cm.display.view[i];
8950     if (lineView.node == lineNode)
8951       { return locateNodeInLineView(lineView, node, offset) }
8952   }
8953 }
8954
8955 function locateNodeInLineView(lineView, node, offset) {
8956   var wrapper = lineView.text.firstChild, bad = false;
8957   if (!node || !contains(wrapper, node)) { return badPos(Pos(lineNo(lineView.line), 0), true) }
8958   if (node == wrapper) {
8959     bad = true;
8960     node = wrapper.childNodes[offset];
8961     offset = 0;
8962     if (!node) {
8963       var line = lineView.rest ? lst(lineView.rest) : lineView.line;
8964       return badPos(Pos(lineNo(line), line.text.length), bad)
8965     }
8966   }
8967
8968   var textNode = node.nodeType == 3 ? node : null, topNode = node;
8969   if (!textNode && node.childNodes.length == 1 && node.firstChild.nodeType == 3) {
8970     textNode = node.firstChild;
8971     if (offset) { offset = textNode.nodeValue.length; }
8972   }
8973   while (topNode.parentNode != wrapper) { topNode = topNode.parentNode; }
8974   var measure = lineView.measure, maps = measure.maps;
8975
8976   function find(textNode, topNode, offset) {
8977     for (var i = -1; i < (maps ? maps.length : 0); i++) {
8978       var map$$1 = i < 0 ? measure.map : maps[i];
8979       for (var j = 0; j < map$$1.length; j += 3) {
8980         var curNode = map$$1[j + 2];
8981         if (curNode == textNode || curNode == topNode) {
8982           var line = lineNo(i < 0 ? lineView.line : lineView.rest[i]);
8983           var ch = map$$1[j] + offset;
8984           if (offset < 0 || curNode != textNode) { ch = map$$1[j + (offset ? 1 : 0)]; }
8985           return Pos(line, ch)
8986         }
8987       }
8988     }
8989   }
8990   var found = find(textNode, topNode, offset);
8991   if (found) { return badPos(found, bad) }
8992
8993   // FIXME this is all really shaky. might handle the few cases it needs to handle, but likely to cause problems
8994   for (var after = topNode.nextSibling, dist = textNode ? textNode.nodeValue.length - offset : 0; after; after = after.nextSibling) {
8995     found = find(after, after.firstChild, 0);
8996     if (found)
8997       { return badPos(Pos(found.line, found.ch - dist), bad) }
8998     else
8999       { dist += after.textContent.length; }
9000   }
9001   for (var before = topNode.previousSibling, dist$1 = offset; before; before = before.previousSibling) {
9002     found = find(before, before.firstChild, -1);
9003     if (found)
9004       { return badPos(Pos(found.line, found.ch + dist$1), bad) }
9005     else
9006       { dist$1 += before.textContent.length; }
9007   }
9008 }
9009
9010 // TEXTAREA INPUT STYLE
9011
9012 var TextareaInput = function(cm) {
9013   this.cm = cm;
9014   // See input.poll and input.reset
9015   this.prevInput = "";
9016
9017   // Flag that indicates whether we expect input to appear real soon
9018   // now (after some event like 'keypress' or 'input') and are
9019   // polling intensively.
9020   this.pollingFast = false;
9021   // Self-resetting timeout for the poller
9022   this.polling = new Delayed();
9023   // Tracks when input.reset has punted to just putting a short
9024   // string into the textarea instead of the full selection.
9025   this.inaccurateSelection = false;
9026   // Used to work around IE issue with selection being forgotten when focus moves away from textarea
9027   this.hasSelection = false;
9028   this.composing = null;
9029 };
9030
9031 TextareaInput.prototype.init = function (display) {
9032     var this$1 = this;
9033
9034   var input = this, cm = this.cm;
9035
9036   // Wraps and hides input textarea
9037   var div = this.wrapper = hiddenTextarea();
9038   // The semihidden textarea that is focused when the editor is
9039   // focused, and receives input.
9040   var te = this.textarea = div.firstChild;
9041   display.wrapper.insertBefore(div, display.wrapper.firstChild);
9042
9043   // Needed to hide big blue blinking cursor on Mobile Safari (doesn't seem to work in iOS 8 anymore)
9044   if (ios) { te.style.width = "0px"; }
9045
9046   on(te, "input", function () {
9047     if (ie && ie_version >= 9 && this$1.hasSelection) { this$1.hasSelection = null; }
9048     input.poll();
9049   });
9050
9051   on(te, "paste", function (e) {
9052     if (signalDOMEvent(cm, e) || handlePaste(e, cm)) { return }
9053
9054     cm.state.pasteIncoming = true;
9055     input.fastPoll();
9056   });
9057
9058   function prepareCopyCut(e) {
9059     if (signalDOMEvent(cm, e)) { return }
9060     if (cm.somethingSelected()) {
9061       setLastCopied({lineWise: false, text: cm.getSelections()});
9062       if (input.inaccurateSelection) {
9063         input.prevInput = "";
9064         input.inaccurateSelection = false;
9065         te.value = lastCopied.text.join("\n");
9066         selectInput(te);
9067       }
9068     } else if (!cm.options.lineWiseCopyCut) {
9069       return
9070     } else {
9071       var ranges = copyableRanges(cm);
9072       setLastCopied({lineWise: true, text: ranges.text});
9073       if (e.type == "cut") {
9074         cm.setSelections(ranges.ranges, null, sel_dontScroll);
9075       } else {
9076         input.prevInput = "";
9077         te.value = ranges.text.join("\n");
9078         selectInput(te);
9079       }
9080     }
9081     if (e.type == "cut") { cm.state.cutIncoming = true; }
9082   }
9083   on(te, "cut", prepareCopyCut);
9084   on(te, "copy", prepareCopyCut);
9085
9086   on(display.scroller, "paste", function (e) {
9087     if (eventInWidget(display, e) || signalDOMEvent(cm, e)) { return }
9088     cm.state.pasteIncoming = true;
9089     input.focus();
9090   });
9091
9092   // Prevent normal selection in the editor (we handle our own)
9093   on(display.lineSpace, "selectstart", function (e) {
9094     if (!eventInWidget(display, e)) { e_preventDefault(e); }
9095   });
9096
9097   on(te, "compositionstart", function () {
9098     var start = cm.getCursor("from");
9099     if (input.composing) { input.composing.range.clear(); }
9100     input.composing = {
9101       start: start,
9102       range: cm.markText(start, cm.getCursor("to"), {className: "CodeMirror-composing"})
9103     };
9104   });
9105   on(te, "compositionend", function () {
9106     if (input.composing) {
9107       input.poll();
9108       input.composing.range.clear();
9109       input.composing = null;
9110     }
9111   });
9112 };
9113
9114 TextareaInput.prototype.prepareSelection = function () {
9115   // Redraw the selection and/or cursor
9116   var cm = this.cm, display = cm.display, doc = cm.doc;
9117   var result = prepareSelection(cm);
9118
9119   // Move the hidden textarea near the cursor to prevent scrolling artifacts
9120   if (cm.options.moveInputWithCursor) {
9121     var headPos = cursorCoords(cm, doc.sel.primary().head, "div");
9122     var wrapOff = display.wrapper.getBoundingClientRect(), lineOff = display.lineDiv.getBoundingClientRect();
9123     result.teTop = Math.max(0, Math.min(display.wrapper.clientHeight - 10,
9124                                         headPos.top + lineOff.top - wrapOff.top));
9125     result.teLeft = Math.max(0, Math.min(display.wrapper.clientWidth - 10,
9126                                          headPos.left + lineOff.left - wrapOff.left));
9127   }
9128
9129   return result
9130 };
9131
9132 TextareaInput.prototype.showSelection = function (drawn) {
9133   var cm = this.cm, display = cm.display;
9134   removeChildrenAndAdd(display.cursorDiv, drawn.cursors);
9135   removeChildrenAndAdd(display.selectionDiv, drawn.selection);
9136   if (drawn.teTop != null) {
9137     this.wrapper.style.top = drawn.teTop + "px";
9138     this.wrapper.style.left = drawn.teLeft + "px";
9139   }
9140 };
9141
9142 // Reset the input to correspond to the selection (or to be empty,
9143 // when not typing and nothing is selected)
9144 TextareaInput.prototype.reset = function (typing) {
9145   if (this.contextMenuPending || this.composing) { return }
9146   var minimal, selected, cm = this.cm, doc = cm.doc;
9147   if (cm.somethingSelected()) {
9148     this.prevInput = "";
9149     var range$$1 = doc.sel.primary();
9150     minimal = hasCopyEvent &&
9151       (range$$1.to().line - range$$1.from().line > 100 || (selected = cm.getSelection()).length > 1000);
9152     var content = minimal ? "-" : selected || cm.getSelection();
9153     this.textarea.value = content;
9154     if (cm.state.focused) { selectInput(this.textarea); }
9155     if (ie && ie_version >= 9) { this.hasSelection = content; }
9156   } else if (!typing) {
9157     this.prevInput = this.textarea.value = "";
9158     if (ie && ie_version >= 9) { this.hasSelection = null; }
9159   }
9160   this.inaccurateSelection = minimal;
9161 };
9162
9163 TextareaInput.prototype.getField = function () { return this.textarea };
9164
9165 TextareaInput.prototype.supportsTouch = function () { return false };
9166
9167 TextareaInput.prototype.focus = function () {
9168   if (this.cm.options.readOnly != "nocursor" && (!mobile || activeElt() != this.textarea)) {
9169     try { this.textarea.focus(); }
9170     catch (e) {} // IE8 will throw if the textarea is display: none or not in DOM
9171   }
9172 };
9173
9174 TextareaInput.prototype.blur = function () { this.textarea.blur(); };
9175
9176 TextareaInput.prototype.resetPosition = function () {
9177   this.wrapper.style.top = this.wrapper.style.left = 0;
9178 };
9179
9180 TextareaInput.prototype.receivedFocus = function () { this.slowPoll(); };
9181
9182 // Poll for input changes, using the normal rate of polling. This
9183 // runs as long as the editor is focused.
9184 TextareaInput.prototype.slowPoll = function () {
9185     var this$1 = this;
9186
9187   if (this.pollingFast) { return }
9188   this.polling.set(this.cm.options.pollInterval, function () {
9189     this$1.poll();
9190     if (this$1.cm.state.focused) { this$1.slowPoll(); }
9191   });
9192 };
9193
9194 // When an event has just come in that is likely to add or change
9195 // something in the input textarea, we poll faster, to ensure that
9196 // the change appears on the screen quickly.
9197 TextareaInput.prototype.fastPoll = function () {
9198   var missed = false, input = this;
9199   input.pollingFast = true;
9200   function p() {
9201     var changed = input.poll();
9202     if (!changed && !missed) {missed = true; input.polling.set(60, p);}
9203     else {input.pollingFast = false; input.slowPoll();}
9204   }
9205   input.polling.set(20, p);
9206 };
9207
9208 // Read input from the textarea, and update the document to match.
9209 // When something is selected, it is present in the textarea, and
9210 // selected (unless it is huge, in which case a placeholder is
9211 // used). When nothing is selected, the cursor sits after previously
9212 // seen text (can be empty), which is stored in prevInput (we must
9213 // not reset the textarea when typing, because that breaks IME).
9214 TextareaInput.prototype.poll = function () {
9215     var this$1 = this;
9216
9217   var cm = this.cm, input = this.textarea, prevInput = this.prevInput;
9218   // Since this is called a *lot*, try to bail out as cheaply as
9219   // possible when it is clear that nothing happened. hasSelection
9220   // will be the case when there is a lot of text in the textarea,
9221   // in which case reading its value would be expensive.
9222   if (this.contextMenuPending || !cm.state.focused ||
9223       (hasSelection(input) && !prevInput && !this.composing) ||
9224       cm.isReadOnly() || cm.options.disableInput || cm.state.keySeq)
9225     { return false }
9226
9227   var text = input.value;
9228   // If nothing changed, bail.
9229   if (text == prevInput && !cm.somethingSelected()) { return false }
9230   // Work around nonsensical selection resetting in IE9/10, and
9231   // inexplicable appearance of private area unicode characters on
9232   // some key combos in Mac (#2689).
9233   if (ie && ie_version >= 9 && this.hasSelection === text ||
9234       mac && /[\uf700-\uf7ff]/.test(text)) {
9235     cm.display.input.reset();
9236     return false
9237   }
9238
9239   if (cm.doc.sel == cm.display.selForContextMenu) {
9240     var first = text.charCodeAt(0);
9241     if (first == 0x200b && !prevInput) { prevInput = "\u200b"; }
9242     if (first == 0x21da) { this.reset(); return this.cm.execCommand("undo") }
9243   }
9244   // Find the part of the input that is actually new
9245   var same = 0, l = Math.min(prevInput.length, text.length);
9246   while (same < l && prevInput.charCodeAt(same) == text.charCodeAt(same)) { ++same; }
9247
9248   runInOp(cm, function () {
9249     applyTextInput(cm, text.slice(same), prevInput.length - same,
9250                    null, this$1.composing ? "*compose" : null);
9251
9252     // Don't leave long text in the textarea, since it makes further polling slow
9253     if (text.length > 1000 || text.indexOf("\n") > -1) { input.value = this$1.prevInput = ""; }
9254     else { this$1.prevInput = text; }
9255
9256     if (this$1.composing) {
9257       this$1.composing.range.clear();
9258       this$1.composing.range = cm.markText(this$1.composing.start, cm.getCursor("to"),
9259                                          {className: "CodeMirror-composing"});
9260     }
9261   });
9262   return true
9263 };
9264
9265 TextareaInput.prototype.ensurePolled = function () {
9266   if (this.pollingFast && this.poll()) { this.pollingFast = false; }
9267 };
9268
9269 TextareaInput.prototype.onKeyPress = function () {
9270   if (ie && ie_version >= 9) { this.hasSelection = null; }
9271   this.fastPoll();
9272 };
9273
9274 TextareaInput.prototype.onContextMenu = function (e) {
9275   var input = this, cm = input.cm, display = cm.display, te = input.textarea;
9276   var pos = posFromMouse(cm, e), scrollPos = display.scroller.scrollTop;
9277   if (!pos || presto) { return } // Opera is difficult.
9278
9279   // Reset the current text selection only if the click is done outside of the selection
9280   // and 'resetSelectionOnContextMenu' option is true.
9281   var reset = cm.options.resetSelectionOnContextMenu;
9282   if (reset && cm.doc.sel.contains(pos) == -1)
9283     { operation(cm, setSelection)(cm.doc, simpleSelection(pos), sel_dontScroll); }
9284
9285   var oldCSS = te.style.cssText, oldWrapperCSS = input.wrapper.style.cssText;
9286   input.wrapper.style.cssText = "position: absolute";
9287   var wrapperBox = input.wrapper.getBoundingClientRect();
9288   te.style.cssText = "position: absolute; width: 30px; height: 30px;\n      top: " + (e.clientY - wrapperBox.top - 5) + "px; left: " + (e.clientX - wrapperBox.left - 5) + "px;\n      z-index: 1000; background: " + (ie ? "rgba(255, 255, 255, .05)" : "transparent") + ";\n      outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);";
9289   var oldScrollY;
9290   if (webkit) { oldScrollY = window.scrollY; } // Work around Chrome issue (#2712)
9291   display.input.focus();
9292   if (webkit) { window.scrollTo(null, oldScrollY); }
9293   display.input.reset();
9294   // Adds "Select all" to context menu in FF
9295   if (!cm.somethingSelected()) { te.value = input.prevInput = " "; }
9296   input.contextMenuPending = true;
9297   display.selForContextMenu = cm.doc.sel;
9298   clearTimeout(display.detectingSelectAll);
9299
9300   // Select-all will be greyed out if there's nothing to select, so
9301   // this adds a zero-width space so that we can later check whether
9302   // it got selected.
9303   function prepareSelectAllHack() {
9304     if (te.selectionStart != null) {
9305       var selected = cm.somethingSelected();
9306       var extval = "\u200b" + (selected ? te.value : "");
9307       te.value = "\u21da"; // Used to catch context-menu undo
9308       te.value = extval;
9309       input.prevInput = selected ? "" : "\u200b";
9310       te.selectionStart = 1; te.selectionEnd = extval.length;
9311       // Re-set this, in case some other handler touched the
9312       // selection in the meantime.
9313       display.selForContextMenu = cm.doc.sel;
9314     }
9315   }
9316   function rehide() {
9317     input.contextMenuPending = false;
9318     input.wrapper.style.cssText = oldWrapperCSS;
9319     te.style.cssText = oldCSS;
9320     if (ie && ie_version < 9) { display.scrollbars.setScrollTop(display.scroller.scrollTop = scrollPos); }
9321
9322     // Try to detect the user choosing select-all
9323     if (te.selectionStart != null) {
9324       if (!ie || (ie && ie_version < 9)) { prepareSelectAllHack(); }
9325       var i = 0, poll = function () {
9326         if (display.selForContextMenu == cm.doc.sel && te.selectionStart == 0 &&
9327             te.selectionEnd > 0 && input.prevInput == "\u200b") {
9328           operation(cm, selectAll)(cm);
9329         } else if (i++ < 10) {
9330           display.detectingSelectAll = setTimeout(poll, 500);
9331         } else {
9332           display.selForContextMenu = null;
9333           display.input.reset();
9334         }
9335       };
9336       display.detectingSelectAll = setTimeout(poll, 200);
9337     }
9338   }
9339
9340   if (ie && ie_version >= 9) { prepareSelectAllHack(); }
9341   if (captureRightClick) {
9342     e_stop(e);
9343     var mouseup = function () {
9344       off(window, "mouseup", mouseup);
9345       setTimeout(rehide, 20);
9346     };
9347     on(window, "mouseup", mouseup);
9348   } else {
9349     setTimeout(rehide, 50);
9350   }
9351 };
9352
9353 TextareaInput.prototype.readOnlyChanged = function (val) {
9354   if (!val) { this.reset(); }
9355   this.textarea.disabled = val == "nocursor";
9356 };
9357
9358 TextareaInput.prototype.setUneditable = function () {};
9359
9360 TextareaInput.prototype.needsContentAttribute = false;
9361
9362 function fromTextArea(textarea, options) {
9363   options = options ? copyObj(options) : {};
9364   options.value = textarea.value;
9365   if (!options.tabindex && textarea.tabIndex)
9366     { options.tabindex = textarea.tabIndex; }
9367   if (!options.placeholder && textarea.placeholder)
9368     { options.placeholder = textarea.placeholder; }
9369   // Set autofocus to true if this textarea is focused, or if it has
9370   // autofocus and no other element is focused.
9371   if (options.autofocus == null) {
9372     var hasFocus = activeElt();
9373     options.autofocus = hasFocus == textarea ||
9374       textarea.getAttribute("autofocus") != null && hasFocus == document.body;
9375   }
9376
9377   function save() {textarea.value = cm.getValue();}
9378
9379   var realSubmit;
9380   if (textarea.form) {
9381     on(textarea.form, "submit", save);
9382     // Deplorable hack to make the submit method do the right thing.
9383     if (!options.leaveSubmitMethodAlone) {
9384       var form = textarea.form;
9385       realSubmit = form.submit;
9386       try {
9387         var wrappedSubmit = form.submit = function () {
9388           save();
9389           form.submit = realSubmit;
9390           form.submit();
9391           form.submit = wrappedSubmit;
9392         };
9393       } catch(e) {}
9394     }
9395   }
9396
9397   options.finishInit = function (cm) {
9398     cm.save = save;
9399     cm.getTextArea = function () { return textarea; };
9400     cm.toTextArea = function () {
9401       cm.toTextArea = isNaN; // Prevent this from being ran twice
9402       save();
9403       textarea.parentNode.removeChild(cm.getWrapperElement());
9404       textarea.style.display = "";
9405       if (textarea.form) {
9406         off(textarea.form, "submit", save);
9407         if (typeof textarea.form.submit == "function")
9408           { textarea.form.submit = realSubmit; }
9409       }
9410     };
9411   };
9412
9413   textarea.style.display = "none";
9414   var cm = CodeMirror$1(function (node) { return textarea.parentNode.insertBefore(node, textarea.nextSibling); },
9415     options);
9416   return cm
9417 }
9418
9419 function addLegacyProps(CodeMirror) {
9420   CodeMirror.off = off;
9421   CodeMirror.on = on;
9422   CodeMirror.wheelEventPixels = wheelEventPixels;
9423   CodeMirror.Doc = Doc;
9424   CodeMirror.splitLines = splitLinesAuto;
9425   CodeMirror.countColumn = countColumn;
9426   CodeMirror.findColumn = findColumn;
9427   CodeMirror.isWordChar = isWordCharBasic;
9428   CodeMirror.Pass = Pass;
9429   CodeMirror.signal = signal;
9430   CodeMirror.Line = Line;
9431   CodeMirror.changeEnd = changeEnd;
9432   CodeMirror.scrollbarModel = scrollbarModel;
9433   CodeMirror.Pos = Pos;
9434   CodeMirror.cmpPos = cmp;
9435   CodeMirror.modes = modes;
9436   CodeMirror.mimeModes = mimeModes;
9437   CodeMirror.resolveMode = resolveMode;
9438   CodeMirror.getMode = getMode;
9439   CodeMirror.modeExtensions = modeExtensions;
9440   CodeMirror.extendMode = extendMode;
9441   CodeMirror.copyState = copyState;
9442   CodeMirror.startState = startState;
9443   CodeMirror.innerMode = innerMode;
9444   CodeMirror.commands = commands;
9445   CodeMirror.keyMap = keyMap;
9446   CodeMirror.keyName = keyName;
9447   CodeMirror.isModifierKey = isModifierKey;
9448   CodeMirror.lookupKey = lookupKey;
9449   CodeMirror.normalizeKeyMap = normalizeKeyMap;
9450   CodeMirror.StringStream = StringStream;
9451   CodeMirror.SharedTextMarker = SharedTextMarker;
9452   CodeMirror.TextMarker = TextMarker;
9453   CodeMirror.LineWidget = LineWidget;
9454   CodeMirror.e_preventDefault = e_preventDefault;
9455   CodeMirror.e_stopPropagation = e_stopPropagation;
9456   CodeMirror.e_stop = e_stop;
9457   CodeMirror.addClass = addClass;
9458   CodeMirror.contains = contains;
9459   CodeMirror.rmClass = rmClass;
9460   CodeMirror.keyNames = keyNames;
9461 }
9462
9463 // EDITOR CONSTRUCTOR
9464
9465 defineOptions(CodeMirror$1);
9466
9467 addEditorMethods(CodeMirror$1);
9468
9469 // Set up methods on CodeMirror's prototype to redirect to the editor's document.
9470 var dontDelegate = "iter insert remove copy getEditor constructor".split(" ");
9471 for (var prop in Doc.prototype) { if (Doc.prototype.hasOwnProperty(prop) && indexOf(dontDelegate, prop) < 0)
9472   { CodeMirror$1.prototype[prop] = (function(method) {
9473     return function() {return method.apply(this.doc, arguments)}
9474   })(Doc.prototype[prop]); } }
9475
9476 eventMixin(Doc);
9477
9478 // INPUT HANDLING
9479
9480 CodeMirror$1.inputStyles = {"textarea": TextareaInput, "contenteditable": ContentEditableInput};
9481
9482 // MODE DEFINITION AND QUERYING
9483
9484 // Extra arguments are stored as the mode's dependencies, which is
9485 // used by (legacy) mechanisms like loadmode.js to automatically
9486 // load a mode. (Preferred mechanism is the require/define calls.)
9487 CodeMirror$1.defineMode = function(name/*, mode, …*/) {
9488   if (!CodeMirror$1.defaults.mode && name != "null") { CodeMirror$1.defaults.mode = name; }
9489   defineMode.apply(this, arguments);
9490 };
9491
9492 CodeMirror$1.defineMIME = defineMIME;
9493
9494 // Minimal default mode.
9495 CodeMirror$1.defineMode("null", function () { return ({token: function (stream) { return stream.skipToEnd(); }}); });
9496 CodeMirror$1.defineMIME("text/plain", "null");
9497
9498 // EXTENSIONS
9499
9500 CodeMirror$1.defineExtension = function (name, func) {
9501   CodeMirror$1.prototype[name] = func;
9502 };
9503 CodeMirror$1.defineDocExtension = function (name, func) {
9504   Doc.prototype[name] = func;
9505 };
9506
9507 CodeMirror$1.fromTextArea = fromTextArea;
9508
9509 addLegacyProps(CodeMirror$1);
9510
9511 CodeMirror$1.version = "5.27.4";
9512
9513 return CodeMirror$1;
9514
9515 })));