Licitator 1.0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3692 lines
208 KiB

5 years ago
  1. <!doctype html>
  2. <title>CodeMirror: User Manual</title>
  3. <meta charset="utf-8"/>
  4. <link rel=stylesheet href="docs.css">
  5. <script src="activebookmark.js"></script>
  6. <script src="../lib/codemirror.js"></script>
  7. <link rel="stylesheet" href="../lib/codemirror.css">
  8. <script src="../addon/runmode/runmode.js"></script>
  9. <script src="../addon/runmode/colorize.js"></script>
  10. <script src="../mode/javascript/javascript.js"></script>
  11. <script src="../mode/xml/xml.js"></script>
  12. <script src="../mode/css/css.js"></script>
  13. <script src="../mode/htmlmixed/htmlmixed.js"></script>
  14. <style>
  15. dt { text-indent: -2em; padding-left: 2em; margin-top: 1em; }
  16. dd { margin-left: 1.5em; margin-bottom: 1em; }
  17. dt {margin-top: 1em;}
  18. dd dl, dd dt, dd dd, dd ul { margin-top: 0; margin-bottom: 0; }
  19. dt + dt { margin-top: 0; }
  20. dt.command { position: relative; }
  21. span.keybinding { position: absolute; right: 0; font-size: 80%; color: #555; text-indent: 0; }
  22. </style>
  23. <div id=nav>
  24. <a href="https://codemirror.net"><h1>CodeMirror</h1><img id=logo src="logo.png"></a>
  25. <ul>
  26. <li><a href="../index.html">Home</a></li>
  27. <li><a href="#overview" class=active data-default="true">Manual</a></li>
  28. <li><a href="https://github.com/codemirror/codemirror">Code</a></li>
  29. </ul>
  30. <ul>
  31. <li><a href="#usage">Basic Usage</a></li>
  32. <li><a href="#config">Configuration</a></li>
  33. <li><a href="#events">Events</a></li>
  34. <li><a href="#keymaps">Key maps</a></li>
  35. <li><a href="#commands">Commands</a></li>
  36. <li><a href="#styling">Customized Styling</a></li>
  37. <li><a href="#api">Programming API</a>
  38. <ul>
  39. <li><a href="#api_constructor">Constructor</a></li>
  40. <li><a href="#api_content">Content manipulation</a></li>
  41. <li><a href="#api_selection">Selection</a></li>
  42. <li><a href="#api_configuration">Configuration</a></li>
  43. <li><a href="#api_doc">Document management</a></li>
  44. <li><a href="#api_history">History</a></li>
  45. <li><a href="#api_marker">Text-marking</a></li>
  46. <li><a href="#api_decoration">Widget, gutter, and decoration</a></li>
  47. <li><a href="#api_sizing">Sizing, scrolling, and positioning</a></li>
  48. <li><a href="#api_mode">Mode, state, and tokens</a></li>
  49. <li><a href="#api_misc">Miscellaneous methods</a></li>
  50. <li><a href="#api_static">Static properties</a></li>
  51. </ul>
  52. </li>
  53. <li><a href="#addons">Addons</a></li>
  54. <li><a href="#modeapi">Writing CodeMirror Modes</a></li>
  55. <li><a href="#vimapi">Vim Mode API</a>
  56. <ul>
  57. <li><a href="#vimapi_configuration">Configuration</a></li>
  58. <li><a href="#vimapi_extending">Extending VIM</a></li>
  59. </ul>
  60. </li>
  61. </ul>
  62. </div>
  63. <article>
  64. <section class=first id=overview>
  65. <h2 style="position: relative">
  66. User manual and reference guide
  67. <span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.53.0</span>
  68. </h2>
  69. <p>CodeMirror is a code-editor component that can be embedded in
  70. Web pages. The core library provides <em>only</em> the editor
  71. component, no accompanying buttons, auto-completion, or other IDE
  72. functionality. It does provide a rich API on top of which such
  73. functionality can be straightforwardly implemented. See
  74. the <a href="#addons">addons</a> included in the distribution,
  75. and the <a href="https://github.com/codemirror/CodeMirror/wiki/CodeMirror-addons">list
  76. of externally hosted addons</a>, for reusable
  77. implementations of extra features.</p>
  78. <p>CodeMirror works with language-specific modes. Modes are
  79. JavaScript programs that help color (and optionally indent) text
  80. written in a given language. The distribution comes with a number
  81. of modes (see the <a href="../mode/"><code>mode/</code></a>
  82. directory), and it isn't hard to <a href="#modeapi">write new
  83. ones</a> for other languages.</p>
  84. </section>
  85. <section id=usage>
  86. <h2>Basic Usage</h2>
  87. <p>The easiest way to use CodeMirror is to simply load the script
  88. and style sheet found under <code>lib/</code> in the distribution,
  89. plus a mode script from one of the <code>mode/</code> directories.
  90. For example:</p>
  91. <pre data-lang="text/html">&lt;script src="lib/codemirror.js">&lt;/script>
  92. &lt;link rel="stylesheet" href="lib/codemirror.css">
  93. &lt;script src="mode/javascript/javascript.js">&lt;/script></pre>
  94. <p>(Alternatively, use a module loader. <a href="#modloader">More
  95. about that later.</a>)</p>
  96. <p>Having done this, an editor instance can be created like
  97. this:</p>
  98. <pre data-lang="javascript">var myCodeMirror = CodeMirror(document.body);</pre>
  99. <p>The editor will be appended to the document body, will start
  100. empty, and will use the mode that we loaded. To have more control
  101. over the new editor, a configuration object can be passed
  102. to <a href="#CodeMirror"><code>CodeMirror</code></a> as a second
  103. argument:</p>
  104. <pre data-lang="javascript">var myCodeMirror = CodeMirror(document.body, {
  105. value: "function myScript(){return 100;}\n",
  106. mode: "javascript"
  107. });</pre>
  108. <p>This will initialize the editor with a piece of code already in
  109. it, and explicitly tell it to use the JavaScript mode (which is
  110. useful when multiple modes are loaded).
  111. See <a href="#config">below</a> for a full discussion of the
  112. configuration options that CodeMirror accepts.</p>
  113. <p>In cases where you don't want to append the editor to an
  114. element, and need more control over the way it is inserted, the
  115. first argument to the <code>CodeMirror</code> function can also
  116. be a function that, when given a DOM element, inserts it into the
  117. document somewhere. This could be used to, for example, replace a
  118. textarea with a real editor:</p>
  119. <pre data-lang="javascript">var myCodeMirror = CodeMirror(function(elt) {
  120. myTextArea.parentNode.replaceChild(elt, myTextArea);
  121. }, {value: myTextArea.value});</pre>
  122. <p>However, for this use case, which is a common way to use
  123. CodeMirror, the library provides a much more powerful
  124. shortcut:</p>
  125. <pre data-lang="javascript">var myCodeMirror = CodeMirror.fromTextArea(myTextArea);</pre>
  126. <p>This will, among other things, ensure that the textarea's value
  127. is updated with the editor's contents when the form (if it is part
  128. of a form) is submitted. See the <a href="#fromTextArea">API
  129. reference</a> for a full description of this method.</p>
  130. <h3 id=modloader>Module loaders</h3>
  131. <p>The files in the CodeMirror distribution contain shims for
  132. loading them (and their dependencies) in AMD or CommonJS
  133. environments. If the variables <code>exports</code>
  134. and <code>module</code> exist and have type object, CommonJS-style
  135. require will be used. If not, but there is a
  136. function <code>define</code> with an <code>amd</code> property
  137. present, AMD-style (RequireJS) will be used.</p>
  138. <p>It is possible to
  139. use <a href="http://browserify.org/">Browserify</a> or similar
  140. tools to statically build modules using CodeMirror. Alternatively,
  141. use <a href="http://requirejs.org/">RequireJS</a> to dynamically
  142. load dependencies at runtime. Both of these approaches have the
  143. advantage that they don't use the global namespace and can, thus,
  144. do things like load multiple versions of CodeMirror alongside each
  145. other.</p>
  146. <p>Here's a simple example of using RequireJS to load CodeMirror:</p>
  147. <pre data-lang="javascript">require([
  148. "cm/lib/codemirror", "cm/mode/htmlmixed/htmlmixed"
  149. ], function(CodeMirror) {
  150. CodeMirror.fromTextArea(document.getElementById("code"), {
  151. lineNumbers: true,
  152. mode: "htmlmixed"
  153. });
  154. });</pre>
  155. <p>It will automatically load the modes that the mixed HTML mode
  156. depends on (XML, JavaScript, and CSS). Do <em>not</em> use
  157. RequireJS' <code>paths</code> option to configure the path to
  158. CodeMirror, since it will break loading submodules through
  159. relative paths. Use
  160. the <a href="http://requirejs.org/docs/api.html#packages"><code>packages</code></a>
  161. configuration option instead, as in:</p>
  162. <pre data-lang=javascript>require.config({
  163. packages: [{
  164. name: "codemirror",
  165. location: "../path/to/codemirror",
  166. main: "lib/codemirror"
  167. }]
  168. });</pre>
  169. </section>
  170. <section id=config>
  171. <h2>Configuration</h2>
  172. <p>Both the <a href="#CodeMirror"><code>CodeMirror</code></a>
  173. function and its <code>fromTextArea</code> method take as second
  174. (optional) argument an object containing configuration options.
  175. Any option not supplied like this will be taken
  176. from <a href="#defaults"><code>CodeMirror.defaults</code></a>, an
  177. object containing the default options. You can update this object
  178. to change the defaults on your page.</p>
  179. <p>Options are not checked in any way, so setting bogus option
  180. values is bound to lead to odd errors.</p>
  181. <p>These are the supported options:</p>
  182. <dl>
  183. <dt id="option_value"><code><strong>value</strong>: string|CodeMirror.Doc</code></dt>
  184. <dd>The starting value of the editor. Can be a string, or
  185. a <a href="#api_doc">document object</a>.</dd>
  186. <dt id="option_mode"><code><strong>mode</strong>: string|object</code></dt>
  187. <dd>The mode to use. When not given, this will default to the
  188. first mode that was loaded. It may be a string, which either
  189. simply names the mode or is
  190. a <a href="http://en.wikipedia.org/wiki/MIME">MIME</a> type
  191. associated with the mode. The value <code>"null"</code>
  192. indicates no highlighting should be applied. Alternatively, it
  193. may be an object containing configuration options for the mode,
  194. with a <code>name</code> property that names the mode (for
  195. example <code>{name: "javascript", json: true}</code>). The demo
  196. pages for each mode contain information about what configuration
  197. parameters the mode supports. You can ask CodeMirror which modes
  198. and MIME types have been defined by inspecting
  199. the <code>CodeMirror.modes</code>
  200. and <code>CodeMirror.mimeModes</code> objects. The first maps
  201. mode names to their constructors, and the second maps MIME types
  202. to mode specs.</dd>
  203. <dt id="option_lineSeparator"><code><strong>lineSeparator</strong>: string|null</code></dt>
  204. <dd>Explicitly set the line separator for the editor. By default
  205. (value <code>null</code>), the document will be split on CRLFs
  206. as well as lone CRs and LFs, and a single LF will be used as
  207. line separator in all output (such
  208. as <a href="#getValue"><code>getValue</code></a>). When a
  209. specific string is given, lines will only be split on that
  210. string, and output will, by default, use that same
  211. separator.</dd>
  212. <dt id="option_theme"><code><strong>theme</strong>: string</code></dt>
  213. <dd>The theme to style the editor with. You must make sure the
  214. CSS file defining the corresponding <code>.cm-s-[name]</code>
  215. styles is loaded (see
  216. the <a href="../theme/"><code>theme</code></a> directory in the
  217. distribution). The default is <code>"default"</code>, for which
  218. colors are included in <code>codemirror.css</code>. It is
  219. possible to use multiple theming classes at once—for
  220. example <code>"foo bar"</code> will assign both
  221. the <code>cm-s-foo</code> and the <code>cm-s-bar</code> classes
  222. to the editor.</dd>
  223. <dt id="option_indentUnit"><code><strong>indentUnit</strong>: integer</code></dt>
  224. <dd>How many spaces a block (whatever that means in the edited
  225. language) should be indented. The default is 2.</dd>
  226. <dt id="option_smartIndent"><code><strong>smartIndent</strong>: boolean</code></dt>
  227. <dd>Whether to use the context-sensitive indentation that the
  228. mode provides (or just indent the same as the line before).
  229. Defaults to true.</dd>
  230. <dt id="option_tabSize"><code><strong>tabSize</strong>: integer</code></dt>
  231. <dd>The width of a tab character. Defaults to 4.</dd>
  232. <dt id="option_indentWithTabs"><code><strong>indentWithTabs</strong>: boolean</code></dt>
  233. <dd>Whether, when indenting, the first N*<code>tabSize</code>
  234. spaces should be replaced by N tabs. Default is false.</dd>
  235. <dt id="option_electricChars"><code><strong>electricChars</strong>: boolean</code></dt>
  236. <dd>Configures whether the editor should re-indent the current
  237. line when a character is typed that might change its proper
  238. indentation (only works if the mode supports indentation).
  239. Default is true.</dd>
  240. <dt id="option_specialChars"><code><strong>specialChars</strong>: RegExp</code></dt>
  241. <dd>A regular expression used to determine which characters
  242. should be replaced by a
  243. special <a href="#option_specialCharPlaceholder">placeholder</a>.
  244. Mostly useful for non-printing special characters. The default
  245. is <code>/[\u0000-\u001f\u007f-\u009f\u00ad\u061c\u200b-\u200f\u2028\u2029\ufeff\ufff9-\ufffc]/</code>.</dd>
  246. <dt id="option_specialCharPlaceholder"><code><strong>specialCharPlaceholder</strong>: function(char) → Element</code></dt>
  247. <dd>A function that, given a special character identified by
  248. the <a href="#option_specialChars"><code>specialChars</code></a>
  249. option, produces a DOM node that is used to represent the
  250. character. By default, a red dot (<span style="color: red"></span>)
  251. is shown, with a title tooltip to indicate the character code.</dd>
  252. <dt id="option_direction"><code><strong>direction</strong>: "ltr" | "rtl"</code></dt>
  253. <dd>Flips overall layout and selects base paragraph direction to
  254. be left-to-right or right-to-left. Default is "ltr".
  255. CodeMirror applies the Unicode Bidirectional Algorithm to each
  256. line, but does not autodetect base direction — it's set to the
  257. editor direction for all lines. The resulting order is
  258. sometimes wrong when base direction doesn't match user intent
  259. (for example, leading and trailing punctuation jumps to the
  260. wrong side of the line). Therefore, it's helpful for
  261. multilingual input to let users toggle this option.
  262. <dt id="option_rtlMoveVisually"><code><strong>rtlMoveVisually</strong>: boolean</code></dt>
  263. <dd>Determines whether horizontal cursor movement through
  264. right-to-left (Arabic, Hebrew) text is visual (pressing the left
  265. arrow moves the cursor left) or logical (pressing the left arrow
  266. moves to the next lower index in the string, which is visually
  267. right in right-to-left text). The default is <code>false</code>
  268. on Windows, and <code>true</code> on other platforms.</dd>
  269. <dt id="option_keyMap"><code><strong>keyMap</strong>: string</code></dt>
  270. <dd>Configures the key map to use. The default
  271. is <code>"default"</code>, which is the only key map defined
  272. in <code>codemirror.js</code> itself. Extra key maps are found in
  273. the <a href="../keymap/"><code>key map</code></a> directory. See
  274. the <a href="#keymaps">section on key maps</a> for more
  275. information.</dd>
  276. <dt id="option_extraKeys"><code><strong>extraKeys</strong>: object</code></dt>
  277. <dd>Can be used to specify extra key bindings for the editor,
  278. alongside the ones defined
  279. by <a href="#option_keyMap"><code>keyMap</code></a>. Should be
  280. either null, or a valid <a href="#keymaps">key map</a> value.</dd>
  281. <dt id="option_configureMouse"><code><strong>configureMouse</strong>: fn(cm: CodeMirror, repeat: "single" | "double" | "triple", event: Event) → Object</code></dt>
  282. <dd>Allows you to configure the behavior of mouse selection and
  283. dragging. The function is called when the left mouse button is
  284. pressed. The returned object may have the following properties:
  285. <dl>
  286. <dt><code><strong>unit</strong>: "char" | "word" | "line" | "rectangle" | fn(CodeMirror, Pos) → {from: Pos, to: Pos}</code></dt>
  287. <dd>The unit by which to select. May be one of the built-in
  288. units or a function that takes a position and returns a
  289. range around that, for a custom unit. The default is to
  290. return <code>"word"</code> for double
  291. clicks, <code>"line"</code> for triple
  292. clicks, <code>"rectangle"</code> for alt-clicks (or, on
  293. Chrome OS, meta-shift-clicks), and <code>"single"</code>
  294. otherwise.</dd>
  295. <dt><code><strong>extend</strong>: bool</code></dt>
  296. <dd>Whether to extend the existing selection range or start
  297. a new one. By default, this is enabled when shift
  298. clicking.</dd>
  299. <dt><code><strong>addNew</strong>: bool</code></dt>
  300. <dd>When enabled, this adds a new range to the existing
  301. selection, rather than replacing it. The default behavior is
  302. to enable this for command-click on Mac OS, and
  303. control-click on other platforms.</dd>
  304. <dt><code><strong>moveOnDrag</strong>: bool</code></dt>
  305. <dd>When the mouse even drags content around inside the
  306. editor, this controls whether it is copied (false) or moved
  307. (true). By default, this is enabled by alt-clicking on Mac
  308. OS, and ctrl-clicking elsewhere.</dd>
  309. </dl>
  310. </dd>
  311. <dt id="option_lineWrapping"><code><strong>lineWrapping</strong>: boolean</code></dt>
  312. <dd>Whether CodeMirror should scroll or wrap for long lines.
  313. Defaults to <code>false</code> (scroll).</dd>
  314. <dt id="option_lineNumbers"><code><strong>lineNumbers</strong>: boolean</code></dt>
  315. <dd>Whether to show line numbers to the left of the editor.</dd>
  316. <dt id="option_firstLineNumber"><code><strong>firstLineNumber</strong>: integer</code></dt>
  317. <dd>At which number to start counting lines. Default is 1.</dd>
  318. <dt id="option_lineNumberFormatter"><code><strong>lineNumberFormatter</strong>: function(line: integer) → string</code></dt>
  319. <dd>A function used to format line numbers. The function is
  320. passed the line number, and should return a string that will be
  321. shown in the gutter.</dd>
  322. <dt id="option_gutters"><code><strong>gutters</strong>: array&lt;string | {className: string, style: ?string}&gt;</code></dt>
  323. <dd>Can be used to add extra gutters (beyond or instead of the
  324. line number gutter). Should be an array of CSS class names or
  325. class name / CSS string pairs, each of which defines
  326. a <code>width</code> (and optionally a background), and which
  327. will be used to draw the background of the gutters. <em>May</em>
  328. include the <code>CodeMirror-linenumbers</code> class, in order
  329. to explicitly set the position of the line number gutter (it
  330. will default to be to the right of all other gutters). These
  331. class names are the keys passed
  332. to <a href="#setGutterMarker"><code>setGutterMarker</code></a>.</dd>
  333. <dt id="option_fixedGutter"><code><strong>fixedGutter</strong>: boolean</code></dt>
  334. <dd>Determines whether the gutter scrolls along with the content
  335. horizontally (false) or whether it stays fixed during horizontal
  336. scrolling (true, the default).</dd>
  337. <dt id="option_scrollbarStyle"><code><strong>scrollbarStyle</strong>: string</code></dt>
  338. <dd>Chooses a scrollbar implementation. The default
  339. is <code>"native"</code>, showing native scrollbars. The core
  340. library also provides the <code>"null"</code> style, which
  341. completely hides the
  342. scrollbars. <a href="#addon_simplescrollbars">Addons</a> can
  343. implement additional scrollbar models.</dd>
  344. <dt id="option_coverGutterNextToScrollbar"><code><strong>coverGutterNextToScrollbar</strong>: boolean</code></dt>
  345. <dd>When <a href="#option_fixedGutter"><code>fixedGutter</code></a>
  346. is on, and there is a horizontal scrollbar, by default the
  347. gutter will be visible to the left of this scrollbar. If this
  348. option is set to true, it will be covered by an element with
  349. class <code>CodeMirror-gutter-filler</code>.</dd>
  350. <dt id="option_inputStyle"><code><strong>inputStyle</strong>: string</code></dt>
  351. <dd>Selects the way CodeMirror handles input and focus. The core
  352. library defines the <code>"textarea"</code>
  353. and <code>"contenteditable"</code> input models. On mobile
  354. browsers, the default is <code>"contenteditable"</code>. On
  355. desktop browsers, the default is <code>"textarea"</code>.
  356. Support for IME and screen readers is better in
  357. the <code>"contenteditable"</code> model. The intention is to
  358. make it the default on modern desktop browsers in the
  359. future.</dd>
  360. <dt id="option_readOnly"><code><strong>readOnly</strong>: boolean|string</code></dt>
  361. <dd>This disables editing of the editor content by the user. If
  362. the special value <code>"nocursor"</code> is given (instead of
  363. simply <code>true</code>), focusing of the editor is also
  364. disallowed.</dd>
  365. <dt id="option_screenReaderLabel"><code><strong>screenReaderLabel</strong>: string</code></dt>
  366. <dd>This label is read by the screenreaders when CodeMirror text area is focused. This
  367. is helpful for accessibility.</dd>
  368. <dt id="option_showCursorWhenSelecting"><code><strong>showCursorWhenSelecting</strong>: boolean</code></dt>
  369. <dd>Whether the cursor should be drawn when a selection is
  370. active. Defaults to false.</dd>
  371. <dt id="option_lineWiseCopyCut"><code><strong>lineWiseCopyCut</strong>: boolean</code></dt>
  372. <dd>When enabled, which is the default, doing copy or cut when
  373. there is no selection will copy or cut the whole lines that have
  374. cursors on them.</dd>
  375. <dt id="option_pasteLinesPerSelection"><code><strong>pasteLinesPerSelection</strong>: boolean</code></dt>
  376. <dd>When pasting something from an external source (not from the
  377. editor itself), if the number of lines matches the number of
  378. selection, CodeMirror will by default insert one line per
  379. selection. You can set this to <code>false</code> to disable
  380. that behavior.</dd>
  381. <dt id="option_selectionsMayTouch"><code><strong>selectionsMayTouch</strong>: boolean</code></dt>
  382. <dd>Determines whether multiple selections are joined as soon as
  383. they touch (the default) or only when they overlap (true).</dd>
  384. <dt id="option_undoDepth"><code><strong>undoDepth</strong>: integer</code></dt>
  385. <dd>The maximum number of undo levels that the editor stores.
  386. Note that this includes selection change events. Defaults to
  387. 200.</dd>
  388. <dt id="option_historyEventDelay"><code><strong>historyEventDelay</strong>: integer</code></dt>
  389. <dd>The period of inactivity (in milliseconds) that will cause a
  390. new history event to be started when typing or deleting.
  391. Defaults to 1250.</dd>
  392. <dt id="option_tabindex"><code><strong>tabindex</strong>: integer</code></dt>
  393. <dd>The <a href="http://www.w3.org/TR/html401/interact/forms.html#adef-tabindex">tab
  394. index</a> to assign to the editor. If not given, no tab index
  395. will be assigned.</dd>
  396. <dt id="option_autofocus"><code><strong>autofocus</strong>: boolean</code></dt>
  397. <dd>Can be used to make CodeMirror focus itself on
  398. initialization. Defaults to off.
  399. When <a href="#fromTextArea"><code>fromTextArea</code></a> is
  400. used, and no explicit value is given for this option, it will be
  401. set to true when either the source textarea is focused, or it
  402. has an <code>autofocus</code> attribute and no other element is
  403. focused.</dd>
  404. <dt id="option_phrases"><code><strong>phrases</strong>: ?object</code></dt>
  405. <dd>Some addons run user-visible strings (such as labels in the
  406. interface) through the <a href="#phrase"><code>phrase</code></a>
  407. method to allow for translation. This option determines the
  408. return value of that method. When it is null or an object that
  409. doesn't have a property named by the input string, that string
  410. is returned. Otherwise, the value of the property corresponding
  411. to that string is returned.</dd>
  412. </dl>
  413. <p>Below this a few more specialized, low-level options are
  414. listed. These are only useful in very specific situations, you
  415. might want to skip them the first time you read this manual.</p>
  416. <dl>
  417. <dt id="option_dragDrop"><code><strong>dragDrop</strong>: boolean</code></dt>
  418. <dd>Controls whether drag-and-drop is enabled. On by default.</dd>
  419. <dt id="option_allowDropFileTypes"><code><strong>allowDropFileTypes</strong>: array&lt;string&gt;</code></dt>
  420. <dd>When set (default is <code>null</code>) only files whose
  421. type is in the array can be dropped into the editor. The strings
  422. should be MIME types, and will be checked against
  423. the <a href="https://w3c.github.io/FileAPI/#dfn-type"><code>type</code></a>
  424. of the <code>File</code> object as reported by the browser.</dd>
  425. <dt id="option_cursorBlinkRate"><code><strong>cursorBlinkRate</strong>: number</code></dt>
  426. <dd>Half-period in milliseconds used for cursor blinking. The default blink
  427. rate is 530ms. By setting this to zero, blinking can be disabled. A
  428. negative value hides the cursor entirely.</dd>
  429. <dt id="option_cursorScrollMargin"><code><strong>cursorScrollMargin</strong>: number</code></dt>
  430. <dd>How much extra space to always keep above and below the
  431. cursor when approaching the top or bottom of the visible view in
  432. a scrollable document. Default is 0.</dd>
  433. <dt id="option_cursorHeight"><code><strong>cursorHeight</strong>: number</code></dt>
  434. <dd>Determines the height of the cursor. Default is 1, meaning
  435. it spans the whole height of the line. For some fonts (and by
  436. some tastes) a smaller height (for example <code>0.85</code>),
  437. which causes the cursor to not reach all the way to the bottom
  438. of the line, looks better</dd>
  439. <dt id="option_resetSelectionOnContextMenu"><code><strong>resetSelectionOnContextMenu</strong>: boolean</code></dt>
  440. <dd>Controls whether, when the context menu is opened with a
  441. click outside of the current selection, the cursor is moved to
  442. the point of the click. Defaults to <code>true</code>.</dd>
  443. <dt id="option_workTime"><code id="option_wordkDelay"><strong>workTime</strong>, <strong>workDelay</strong>: number</code></dt>
  444. <dd>Highlighting is done by a pseudo background-thread that will
  445. work for <code>workTime</code> milliseconds, and then use
  446. timeout to sleep for <code>workDelay</code> milliseconds. The
  447. defaults are 200 and 300, you can change these options to make
  448. the highlighting more or less aggressive.</dd>
  449. <dt id="option_pollInterval"><code><strong>pollInterval</strong>: number</code></dt>
  450. <dd>Indicates how quickly CodeMirror should poll its input
  451. textarea for changes (when focused). Most input is captured by
  452. events, but some things, like IME input on some browsers, don't
  453. generate events that allow CodeMirror to properly detect it.
  454. Thus, it polls. Default is 100 milliseconds.</dd>
  455. <dt id="option_flattenSpans"><code><strong>flattenSpans</strong>: boolean</code></dt>
  456. <dd>By default, CodeMirror will combine adjacent tokens into a
  457. single span if they have the same class. This will result in a
  458. simpler DOM tree, and thus perform better. With some kinds of
  459. styling (such as rounded corners), this will change the way the
  460. document looks. You can set this option to false to disable this
  461. behavior.</dd>
  462. <dt id="option_addModeClass"><code><strong>addModeClass</strong>: boolean</code></dt>
  463. <dd>When enabled (off by default), an extra CSS class will be
  464. added to each token, indicating the
  465. (<a href="#innerMode">inner</a>) mode that produced it, prefixed
  466. with <code>"cm-m-"</code>. For example, tokens from the XML mode
  467. will get the <code>cm-m-xml</code> class.</dd>
  468. <dt id="option_maxHighlightLength"><code><strong>maxHighlightLength</strong>: number</code></dt>
  469. <dd>When highlighting long lines, in order to stay responsive,
  470. the editor will give up and simply style the rest of the line as
  471. plain text when it reaches a certain position. The default is
  472. 10 000. You can set this to <code>Infinity</code> to turn off
  473. this behavior.</dd>
  474. <dt id="option_viewportMargin"><code><strong>viewportMargin</strong>: integer</code></dt>
  475. <dd>Specifies the amount of lines that are rendered above and
  476. below the part of the document that's currently scrolled into
  477. view. This affects the amount of updates needed when scrolling,
  478. and the amount of work that such an update does. You should
  479. usually leave it at its default, 10. Can be set
  480. to <code>Infinity</code> to make sure the whole document is
  481. always rendered, and thus the browser's text search works on it.
  482. This <em>will</em> have bad effects on performance of big
  483. documents.</dd>
  484. <dt id="option_spellcheck"><code><strong>spellcheck</strong>: boolean</code></dt>
  485. <dd>Specifies whether or not spellcheck will be enabled on the input.</dd>
  486. <dt id="option_autocorrect"><code><strong>autocorrect</strong>: boolean</code></dt>
  487. <dd>Specifies whether or not autocorrect will be enabled on the input.</dd>
  488. <dt id="option_autocapitalize"><code><strong>autocapitalize</strong>: boolean</code></dt>
  489. <dd>Specifies whether or not autocapitalization will be enabled on the input.</dd>
  490. </dl>
  491. </section>
  492. <section id=events>
  493. <h2>Events</h2>
  494. <p>Various CodeMirror-related objects emit events, which allow
  495. client code to react to various situations. Handlers for such
  496. events can be registered with the <a href="#on"><code>on</code></a>
  497. and <a href="#off"><code>off</code></a> methods on the objects
  498. that the event fires on. To fire your own events,
  499. use <code>CodeMirror.signal(target, name, args...)</code>,
  500. where <code>target</code> is a non-DOM-node object.</p>
  501. <p>An editor instance fires the following events.
  502. The <code>instance</code> argument always refers to the editor
  503. itself.</p>
  504. <dl>
  505. <dt id="event_change"><code><strong>"change"</strong> (instance: CodeMirror, changeObj: object)</code></dt>
  506. <dd>Fires every time the content of the editor is changed.
  507. The <code>changeObj</code> is a <code>{from, to, text, removed,
  508. origin}</code> object containing information about the changes
  509. that occurred as second argument. <code>from</code>
  510. and <code>to</code> are the positions (in the pre-change
  511. coordinate system) where the change started and ended (for
  512. example, it might be <code>{ch:0, line:18}</code> if the
  513. position is at the beginning of line #19). <code>text</code> is
  514. an array of strings representing the text that replaced the
  515. changed range (split by line). <code>removed</code> is the text
  516. that used to be between <code>from</code> and <code>to</code>,
  517. which is overwritten by this change. This event is
  518. fired <em>before</em> the end of
  519. an <a href="#operation">operation</a>, before the DOM updates
  520. happen.</dd>
  521. <dt id="event_changes"><code><strong>"changes"</strong> (instance: CodeMirror, changes: array&lt;object&gt;)</code></dt>
  522. <dd>Like the <a href="#event_change"><code>"change"</code></a>
  523. event, but batched per <a href="#operation">operation</a>,
  524. passing an array containing all the changes that happened in the
  525. operation. This event is fired after the operation finished, and
  526. display changes it makes will trigger a new operation.</dd>
  527. <dt id="event_beforeChange"><code><strong>"beforeChange"</strong> (instance: CodeMirror, changeObj: object)</code></dt>
  528. <dd>This event is fired before a change is applied, and its
  529. handler may choose to modify or cancel the change.
  530. The <code>changeObj</code> object
  531. has <code>from</code>, <code>to</code>, and <code>text</code>
  532. properties, as with
  533. the <a href="#event_change"><code>"change"</code></a> event. It
  534. also has a <code>cancel()</code> method, which can be called to
  535. cancel the change, and, <strong>if</strong> the change isn't
  536. coming from an undo or redo event, an <code>update(from, to,
  537. text)</code> method, which may be used to modify the change.
  538. Undo or redo changes can't be modified, because they hold some
  539. metainformation for restoring old marked ranges that is only
  540. valid for that specific change. All three arguments
  541. to <code>update</code> are optional, and can be left off to
  542. leave the existing value for that field
  543. intact. <strong>Note:</strong> you may not do anything from
  544. a <code>"beforeChange"</code> handler that would cause changes
  545. to the document or its visualization. Doing so will, since this
  546. handler is called directly from the bowels of the CodeMirror
  547. implementation, probably cause the editor to become
  548. corrupted.</dd>
  549. <dt id="event_cursorActivity"><code><strong>"cursorActivity"</strong> (instance: CodeMirror)</code></dt>
  550. <dd>Will be fired when the cursor or selection moves, or any
  551. change is made to the editor content.</dd>
  552. <dt id="event_keyHandled"><code><strong>"keyHandled"</strong> (instance: CodeMirror, name: string, event: Event)</code></dt>
  553. <dd>Fired after a key is handled through a
  554. key map. <code>name</code> is the name of the handled key (for
  555. example <code>"Ctrl-X"</code> or <code>"'q'"</code>),
  556. and <code>event</code> is the DOM <code>keydown</code>
  557. or <code>keypress</code> event.</dd>
  558. <dt id="event_inputRead"><code><strong>"inputRead"</strong> (instance: CodeMirror, changeObj: object)</code></dt>
  559. <dd>Fired whenever new input is read from the hidden textarea
  560. (typed or pasted by the user).</dd>
  561. <dt id="event_electricInput"><code><strong>"electricInput"</strong> (instance: CodeMirror, line: integer)</code></dt>
  562. <dd>Fired if text input matched the
  563. mode's <a href="#option_electricChars">electric</a> patterns,
  564. and this caused the line's indentation to change.</dd>
  565. <dt id="event_beforeSelectionChange"><code><strong>"beforeSelectionChange"</strong> (instance: CodeMirror, obj: {ranges, origin, update})</code></dt>
  566. <dd>This event is fired before the selection is moved. Its
  567. handler may inspect the set of selection ranges, present as an
  568. array of <code>{anchor, head}</code> objects in
  569. the <code>ranges</code> property of the <code>obj</code>
  570. argument, and optionally change them by calling
  571. the <code>update</code> method on this object, passing an array
  572. of ranges in the same format. The object also contains
  573. an <code>origin</code> property holding the origin string passed
  574. to the selection-changing method, if any. Handlers for this
  575. event have the same restriction
  576. as <a href="#event_beforeChange"><code>"beforeChange"</code></a>
  577. handlers — they should not do anything to directly update the
  578. state of the editor.</dd>
  579. <dt id="event_viewportChange"><code><strong>"viewportChange"</strong> (instance: CodeMirror, from: number, to: number)</code></dt>
  580. <dd>Fires whenever the <a href="#getViewport">view port</a> of
  581. the editor changes (due to scrolling, editing, or any other
  582. factor). The <code>from</code> and <code>to</code> arguments
  583. give the new start and end of the viewport.</dd>
  584. <dt id="event_swapDoc"><code><strong>"swapDoc"</strong> (instance: CodeMirror, oldDoc: Doc)</code></dt>
  585. <dd>This is signalled when the editor's document is replaced
  586. using the <a href="#swapDoc"><code>swapDoc</code></a>
  587. method.</dd>
  588. <dt id="event_gutterClick"><code><strong>"gutterClick"</strong> (instance: CodeMirror, line: integer, gutter: string, clickEvent: Event)</code></dt>
  589. <dd>Fires when the editor gutter (the line-number area) is
  590. clicked. Will pass the editor instance as first argument, the
  591. (zero-based) number of the line that was clicked as second
  592. argument, the CSS class of the gutter that was clicked as third
  593. argument, and the raw <code>mousedown</code> event object as
  594. fourth argument.</dd>
  595. <dt id="event_gutterContextMenu"><code><strong>"gutterContextMenu"</strong> (instance: CodeMirror, line: integer, gutter: string, contextMenu: Event: Event)</code></dt>
  596. <dd>Fires when the editor gutter (the line-number area)
  597. receives a <code>contextmenu</code> event. Will pass the editor
  598. instance as first argument, the (zero-based) number of the line
  599. that was clicked as second argument, the CSS class of the
  600. gutter that was clicked as third argument, and the raw
  601. <code>contextmenu</code> mouse event object as fourth argument.
  602. You can <code>preventDefault</code> the event, to signal that
  603. CodeMirror should do no further handling.</dd>
  604. <dt id="event_focus"><code><strong>"focus"</strong> (instance: CodeMirror, event: Event)</code></dt>
  605. <dd>Fires whenever the editor is focused.</dd>
  606. <dt id="event_blur"><code><strong>"blur"</strong> (instance: CodeMirror, event: Event)</code></dt>
  607. <dd>Fires whenever the editor is unfocused.</dd>
  608. <dt id="event_scroll"><code><strong>"scroll"</strong> (instance: CodeMirror)</code></dt>
  609. <dd>Fires when the editor is scrolled.</dd>
  610. <dt id="event_refresh"><code><strong>"refresh"</strong> (instance: CodeMirror)</code></dt>
  611. <dd>Fires when the editor is <a href="#refresh">refreshed</a>
  612. or <a href="#setSize">resized</a>. Mostly useful to invalidate
  613. cached values that depend on the editor or character size.</dd>
  614. <dt id="event_optionChange"><code><strong>"optionChange"</strong> (instance: CodeMirror, option: string)</code></dt>
  615. <dd>Dispatched every time an option is changed with <a href="#setOption"><code>setOption</code></a>.</dd>
  616. <dt id="event_scrollCursorIntoView"><code><strong>"scrollCursorIntoView"</strong> (instance: CodeMirror, event: Event)</code></dt>
  617. <dd>Fires when the editor tries to scroll its cursor into view.
  618. Can be hooked into to take care of additional scrollable
  619. containers around the editor. When the event object has
  620. its <code>preventDefault</code> method called, CodeMirror will
  621. not itself try to scroll the window.</dd>
  622. <dt id="event_update"><code><strong>"update"</strong> (instance: CodeMirror)</code></dt>
  623. <dd>Will be fired whenever CodeMirror updates its DOM display.</dd>
  624. <dt id="event_renderLine"><code><strong>"renderLine"</strong> (instance: CodeMirror, line: LineHandle, element: Element)</code></dt>
  625. <dd>Fired whenever a line is (re-)rendered to the DOM. Fired
  626. right after the DOM element is built, <em>before</em> it is
  627. added to the document. The handler may mess with the style of
  628. the resulting element, or add event handlers, but
  629. should <em>not</em> try to change the state of the editor.</dd>
  630. <dt id="event_dom"><code><strong>"mousedown"</strong>,
  631. <strong>"dblclick"</strong>, <strong>"touchstart"</strong>, <strong>"contextmenu"</strong>,
  632. <strong>"keydown"</strong>, <strong>"keypress"</strong>,
  633. <strong>"keyup"</strong>, <strong>"cut"</strong>, <strong>"copy"</strong>, <strong>"paste"</strong>,
  634. <strong>"dragstart"</strong>, <strong>"dragenter"</strong>,
  635. <strong>"dragover"</strong>, <strong>"dragleave"</strong>,
  636. <strong>"drop"</strong>
  637. (instance: CodeMirror, event: Event)</code></dt>
  638. <dd>Fired when CodeMirror is handling a DOM event of this type.
  639. You can <code>preventDefault</code> the event, or give it a
  640. truthy <code>codemirrorIgnore</code> property, to signal that
  641. CodeMirror should do no further handling.</dd>
  642. </dl>
  643. <p>Document objects (instances
  644. of <a href="#Doc"><code>CodeMirror.Doc</code></a>) emit the
  645. following events:</p>
  646. <dl>
  647. <dt id="event_doc_change"><code><strong>"change"</strong> (doc: CodeMirror.Doc, changeObj: object)</code></dt>
  648. <dd>Fired whenever a change occurs to the
  649. document. <code>changeObj</code> has a similar type as the
  650. object passed to the
  651. editor's <a href="#event_change"><code>"change"</code></a>
  652. event.</dd>
  653. <dt id="event_doc_beforeChange"><code><strong>"beforeChange"</strong> (doc: CodeMirror.Doc, change: object)</code></dt>
  654. <dd>See the <a href="#event_beforeChange">description of the
  655. same event</a> on editor instances.</dd>
  656. <dt id="event_doc_cursorActivity"><code><strong>"cursorActivity"</strong> (doc: CodeMirror.Doc)</code></dt>
  657. <dd>Fired whenever the cursor or selection in this document
  658. changes.</dd>
  659. <dt id="event_doc_beforeSelectionChange"><code><strong>"beforeSelectionChange"</strong> (doc: CodeMirror.Doc, selection: {head, anchor})</code></dt>
  660. <dd>Equivalent to
  661. the <a href="#event_beforeSelectionChange">event by the same
  662. name</a> as fired on editor instances.</dd>
  663. </dl>
  664. <p>Line handles (as returned by, for
  665. example, <a href="#getLineHandle"><code>getLineHandle</code></a>)
  666. support these events:</p>
  667. <dl>
  668. <dt id="event_delete"><code><strong>"delete"</strong> ()</code></dt>
  669. <dd>Will be fired when the line object is deleted. A line object
  670. is associated with the <em>start</em> of the line. Mostly useful
  671. when you need to find out when your <a href="#setGutterMarker">gutter
  672. markers</a> on a given line are removed.</dd>
  673. <dt id="event_line_change"><code><strong>"change"</strong> (line: LineHandle, changeObj: object)</code></dt>
  674. <dd>Fires when the line's text content is changed in any way
  675. (but the line is not deleted outright). The <code>change</code>
  676. object is similar to the one passed
  677. to <a href="#event_change">change event</a> on the editor
  678. object.</dd>
  679. </dl>
  680. <p>Marked range handles (<code>CodeMirror.TextMarker</code>), as returned
  681. by <a href="#markText"><code>markText</code></a>
  682. and <a href="#setBookmark"><code>setBookmark</code></a>, emit the
  683. following events:</p>
  684. <dl>
  685. <dt id="event_beforeCursorEnter"><code><strong>"beforeCursorEnter"</strong> ()</code></dt>
  686. <dd>Fired when the cursor enters the marked range. From this
  687. event handler, the editor state may be inspected
  688. but <em>not</em> modified, with the exception that the range on
  689. which the event fires may be cleared.</dd>
  690. <dt id="event_clear"><code><strong>"clear"</strong> (from: {line, ch}, to: {line, ch})</code></dt>
  691. <dd>Fired when the range is cleared, either through cursor
  692. movement in combination
  693. with <a href="#mark_clearOnEnter"><code>clearOnEnter</code></a>
  694. or through a call to its <code>clear()</code> method. Will only
  695. be fired once per handle. Note that deleting the range through
  696. text editing does not fire this event, because an undo action
  697. might bring the range back into existence. <code>from</code>
  698. and <code>to</code> give the part of the document that the range
  699. spanned when it was cleared.</dd>
  700. <dt id="event_hide"><code><strong>"hide"</strong> ()</code></dt>
  701. <dd>Fired when the last part of the marker is removed from the
  702. document by editing operations.</dd>
  703. <dt id="event_unhide"><code><strong>"unhide"</strong> ()</code></dt>
  704. <dd>Fired when, after the marker was removed by editing, a undo
  705. operation brought the marker back.</dd>
  706. </dl>
  707. <p>Line widgets (<code>CodeMirror.LineWidget</code>), returned
  708. by <a href="#addLineWidget"><code>addLineWidget</code></a>, fire
  709. these events:</p>
  710. <dl>
  711. <dt id="event_redraw"><code><strong>"redraw"</strong> ()</code></dt>
  712. <dd>Fired whenever the editor re-adds the widget to the DOM.
  713. This will happen once right after the widget is added (if it is
  714. scrolled into view), and then again whenever it is scrolled out
  715. of view and back in again, or when changes to the editor options
  716. or the line the widget is on require the widget to be
  717. redrawn.</dd>
  718. </dl>
  719. </section>
  720. <section id=keymaps>
  721. <h2>Key Maps</h2>
  722. <p>Key maps are ways to associate keys and mouse buttons with
  723. functionality. A key map is an object mapping strings that
  724. identify the buttons to functions that implement their
  725. functionality.</p>
  726. <p>The CodeMirror distributions comes
  727. with <a href="../demo/emacs.html">Emacs</a>, <a href="../demo/vim.html">Vim</a>,
  728. and <a href="../demo/sublime.html">Sublime Text</a>-style keymaps.</p>
  729. <p>Keys are identified either by name or by character.
  730. The <code>CodeMirror.keyNames</code> object defines names for
  731. common keys and associates them with their key codes. Examples of
  732. names defined here are <code>Enter</code>, <code>F5</code>,
  733. and <code>Q</code>. These can be prefixed
  734. with <code>Shift-</code>, <code>Cmd-</code>, <code>Ctrl-</code>,
  735. and <code>Alt-</code> to specify a modifier. So for
  736. example, <code>Shift-Ctrl-Space</code> would be a valid key
  737. identifier.</p>
  738. <p>Common example: map the Tab key to insert spaces instead of a tab
  739. character.</p>
  740. <pre data-lang="javascript">
  741. editor.setOption("extraKeys", {
  742. Tab: function(cm) {
  743. var spaces = Array(cm.getOption("indentUnit") + 1).join(" ");
  744. cm.replaceSelection(spaces);
  745. }
  746. });</pre>
  747. <p>Alternatively, a character can be specified directly by
  748. surrounding it in single quotes, for example <code>'$'</code>
  749. or <code>'q'</code>. Due to limitations in the way browsers fire
  750. key events, these may not be prefixed with modifiers.</p>
  751. <p>To bind mouse buttons, use the names `LeftClick`,
  752. `MiddleClick`, and `RightClick`. These can also be prefixed with
  753. modifiers, and in addition, the word `Double` or `Triple` can be
  754. put before `Click` (as in `LeftDoubleClick`) to bind a double- or
  755. triple-click. The function for such a binding is passed the
  756. position that was clicked as second argument.</p>
  757. <p id="normalizeKeyMap">Multi-stroke key bindings can be specified
  758. by separating the key names by spaces in the property name, for
  759. example <code>Ctrl-X Ctrl-V</code>. When a map contains
  760. multi-stoke bindings or keys with modifiers that are not specified
  761. in the default order (<code>Shift-Cmd-Ctrl-Alt</code>), you must
  762. call <code>CodeMirror.normalizeKeyMap</code> on it before it can
  763. be used. This function takes a keymap and modifies it to normalize
  764. modifier order and properly recognize multi-stroke bindings. It
  765. will return the keymap itself.</p>
  766. <p>The <code>CodeMirror.keyMap</code> object associates key maps
  767. with names. User code and key map definitions can assign extra
  768. properties to this object. Anywhere where a key map is expected, a
  769. string can be given, which will be looked up in this object. It
  770. also contains the <code>"default"</code> key map holding the
  771. default bindings.</p>
  772. <p>The values of properties in key maps can be either functions of
  773. a single argument (the CodeMirror instance), strings, or
  774. <code>false</code>. Strings refer
  775. to <a href="#commands">commands</a>, which are described below. If
  776. the property is set to <code>false</code>, CodeMirror leaves
  777. handling of the key up to the browser. A key handler function may
  778. return <code>CodeMirror.Pass</code> to indicate that it has
  779. decided not to handle the key, and other handlers (or the default
  780. behavior) should be given a turn.</p>
  781. <p>Keys mapped to command names that start with the
  782. characters <code>"go"</code> or to functions that have a
  783. truthy <code>motion</code> property (which should be used for
  784. cursor-movement actions) will be fired even when an
  785. extra <code>Shift</code> modifier is present (i.e. <code>"Up":
  786. "goLineUp"</code> matches both up and shift-up). This is used to
  787. easily implement shift-selection.</p>
  788. <p>Key maps can defer to each other by defining
  789. a <code>fallthrough</code> property. This indicates that when a
  790. key is not found in the map itself, one or more other maps should
  791. be searched. It can hold either a single key map or an array of
  792. key maps.</p>
  793. <p>When a key map needs to set something up when it becomes
  794. active, or tear something down when deactivated, it can
  795. contain <code>attach</code> and/or <code>detach</code> properties,
  796. which should hold functions that take the editor instance and the
  797. next or previous keymap. Note that this only works for the
  798. <a href="#option_keyMap">top-level keymap</a>, not for fallthrough
  799. maps or maps added
  800. with <a href="#option_extraKeys"><code>extraKeys</code></a>
  801. or <a href="#addKeyMap"><code>addKeyMap</code></a>.</p>
  802. </section>
  803. <section id=commands>
  804. <h2>Commands</h2>
  805. <p>Commands are parameter-less actions that can be performed on an
  806. editor. Their main use is for key bindings. Commands are defined by
  807. adding properties to the <code>CodeMirror.commands</code> object.
  808. A number of common commands are defined by the library itself,
  809. most of them used by the default key bindings. The value of a
  810. command property must be a function of one argument (an editor
  811. instance).</p>
  812. <p>Some of the commands below are referenced in the default
  813. key map, but not defined by the core library. These are intended to
  814. be defined by user code or addons.</p>
  815. <p>Commands can also be run with
  816. the <a href="#execCommand"><code>execCommand</code></a>
  817. method.</p>
  818. <dl>
  819. <dt class=command id=command_selectAll><code><strong>selectAll</strong></code><span class=keybinding>Ctrl-A (PC), Cmd-A (Mac)</span></dt>
  820. <dd>Select the whole content of the editor.</dd>
  821. <dt class=command id=command_singleSelection><code><strong>singleSelection</strong></code><span class=keybinding>Esc</span></dt>
  822. <dd>When multiple selections are present, this deselects all but
  823. the primary selection.</dd>
  824. <dt class=command id=command_killLine><code><strong>killLine</strong></code><span class=keybinding>Ctrl-K (Mac)</span></dt>
  825. <dd>Emacs-style line killing. Deletes the part of the line after
  826. the cursor. If that consists only of whitespace, the newline at
  827. the end of the line is also deleted.</dd>
  828. <dt class=command id=command_deleteLine><code><strong>deleteLine</strong></code><span class=keybinding>Ctrl-D (PC), Cmd-D (Mac)</span></dt>
  829. <dd>Deletes the whole line under the cursor, including newline at the end.</dd>
  830. <dt class=command id=command_delLineLeft><code><strong>delLineLeft</strong></code></dt>
  831. <dd>Delete the part of the line before the cursor.</dd>
  832. <dt class=command id=command_delWrappedLineLeft><code><strong>delWrappedLineLeft</strong></code><span class=keybinding>Cmd-Backspace (Mac)</span></dt>
  833. <dd>Delete the part of the line from the left side of the visual line the cursor is on to the cursor.</dd>
  834. <dt class=command id=command_delWrappedLineRight><code><strong>delWrappedLineRight</strong></code><span class=keybinding>Cmd-Delete (Mac)</span></dt>
  835. <dd>Delete the part of the line from the cursor to the right side of the visual line the cursor is on.</dd>
  836. <dt class=command id=command_undo><code><strong>undo</strong></code><span class=keybinding>Ctrl-Z (PC), Cmd-Z (Mac)</span></dt>
  837. <dd>Undo the last change. Note that, because browsers still
  838. don't make it possible for scripts to react to or customize the
  839. context menu, selecting undo (or redo) from the context menu in
  840. a CodeMirror instance does not work.</dd>
  841. <dt class=command id=command_redo><code><strong>redo</strong></code><span class=keybinding>Ctrl-Y (PC), Shift-Cmd-Z (Mac), Cmd-Y (Mac)</span></dt>
  842. <dd>Redo the last undone change.</dd>
  843. <dt class=command id=command_undoSelection><code><strong>undoSelection</strong></code><span class=keybinding>Ctrl-U (PC), Cmd-U (Mac)</span></dt>
  844. <dd>Undo the last change to the selection, or if there are no
  845. selection-only changes at the top of the history, undo the last
  846. change.</dd>
  847. <dt class=command id=command_redoSelection><code><strong>redoSelection</strong></code><span class=keybinding>Alt-U (PC), Shift-Cmd-U (Mac)</span></dt>
  848. <dd>Redo the last change to the selection, or the last text change if
  849. no selection changes remain.</dd>
  850. <dt class=command id=command_goDocStart><code><strong>goDocStart</strong></code><span class=keybinding>Ctrl-Home (PC), Cmd-Up (Mac), Cmd-Home (Mac)</span></dt>
  851. <dd>Move the cursor to the start of the document.</dd>
  852. <dt class=command id=command_goDocEnd><code><strong>goDocEnd</strong></code><span class=keybinding>Ctrl-End (PC), Cmd-End (Mac), Cmd-Down (Mac)</span></dt>
  853. <dd>Move the cursor to the end of the document.</dd>
  854. <dt class=command id=command_goLineStart><code><strong>goLineStart</strong></code><span class=keybinding>Alt-Left (PC), Ctrl-A (Mac)</span></dt>
  855. <dd>Move the cursor to the start of the line.</dd>
  856. <dt class=command id=command_goLineStartSmart><code><strong>goLineStartSmart</strong></code><span class=keybinding>Home</span></dt>
  857. <dd>Move to the start of the text on the line, or if we are
  858. already there, to the actual start of the line (including
  859. whitespace).</dd>
  860. <dt class=command id=command_goLineEnd><code><strong>goLineEnd</strong></code><span class=keybinding>Alt-Right (PC), Ctrl-E (Mac)</span></dt>
  861. <dd>Move the cursor to the end of the line.</dd>
  862. <dt class=command id=command_goLineRight><code><strong>goLineRight</strong></code><span class=keybinding>Cmd-Right (Mac)</span></dt>
  863. <dd>Move the cursor to the right side of the visual line it is on.</dd>
  864. <dt class=command id=command_goLineLeft><code><strong>goLineLeft</strong></code><span class=keybinding>Cmd-Left (Mac)</span></dt>
  865. <dd>Move the cursor to the left side of the visual line it is on. If
  866. this line is wrapped, that may not be the start of the line.</dd>
  867. <dt class=command id=command_goLineLeftSmart><code><strong>goLineLeftSmart</strong></code></dt>
  868. <dd>Move the cursor to the left side of the visual line it is
  869. on. If that takes it to the start of the line, behave
  870. like <a href="#command_goLineStartSmart"><code>goLineStartSmart</code></a>.</dd>
  871. <dt class=command id=command_goLineUp><code><strong>goLineUp</strong></code><span class=keybinding>Up, Ctrl-P (Mac)</span></dt>
  872. <dd>Move the cursor up one line.</dd>
  873. <dt class=command id=command_goLineDown><code><strong>goLineDown</strong></code><span class=keybinding>Down, Ctrl-N (Mac)</span></dt>
  874. <dd>Move down one line.</dd>
  875. <dt class=command id=command_goPageUp><code><strong>goPageUp</strong></code><span class=keybinding>PageUp, Shift-Ctrl-V (Mac)</span></dt>
  876. <dd>Move the cursor up one screen, and scroll up by the same distance.</dd>
  877. <dt class=command id=command_goPageDown><code><strong>goPageDown</strong></code><span class=keybinding>PageDown, Ctrl-V (Mac)</span></dt>
  878. <dd>Move the cursor down one screen, and scroll down by the same distance.</dd>
  879. <dt class=command id=command_goCharLeft><code><strong>goCharLeft</strong></code><span class=keybinding>Left, Ctrl-B (Mac)</span></dt>
  880. <dd>Move the cursor one character left, going to the previous line
  881. when hitting the start of line.</dd>
  882. <dt class=command id=command_goCharRight><code><strong>goCharRight</strong></code><span class=keybinding>Right, Ctrl-F (Mac)</span></dt>
  883. <dd>Move the cursor one character right, going to the next line
  884. when hitting the end of line.</dd>
  885. <dt class=command id=command_goColumnLeft><code><strong>goColumnLeft</strong></code></dt>
  886. <dd>Move the cursor one character left, but don't cross line boundaries.</dd>
  887. <dt class=command id=command_goColumnRight><code><strong>goColumnRight</strong></code></dt>
  888. <dd>Move the cursor one character right, don't cross line boundaries.</dd>
  889. <dt class=command id=command_goWordLeft><code><strong>goWordLeft</strong></code><span class=keybinding>Alt-B (Mac)</span></dt>
  890. <dd>Move the cursor to the start of the previous word.</dd>
  891. <dt class=command id=command_goWordRight><code><strong>goWordRight</strong></code><span class=keybinding>Alt-F (Mac)</span></dt>
  892. <dd>Move the cursor to the end of the next word.</dd>
  893. <dt class=command id=command_goGroupLeft><code><strong>goGroupLeft</strong></code><span class=keybinding>Ctrl-Left (PC), Alt-Left (Mac)</span></dt>
  894. <dd>Move to the left of the group before the cursor. A group is
  895. a stretch of word characters, a stretch of punctuation
  896. characters, a newline, or a stretch of <em>more than one</em>
  897. whitespace character.</dd>
  898. <dt class=command id=command_goGroupRight><code><strong>goGroupRight</strong></code><span class=keybinding>Ctrl-Right (PC), Alt-Right (Mac)</span></dt>
  899. <dd>Move to the right of the group after the cursor
  900. (see <a href="#command_goGroupLeft">above</a>).</dd>
  901. <dt class=command id=command_delCharBefore><code><strong>delCharBefore</strong></code><span class=keybinding>Shift-Backspace, Ctrl-H (Mac)</span></dt>
  902. <dd>Delete the character before the cursor.</dd>
  903. <dt class=command id=command_delCharAfter><code><strong>delCharAfter</strong></code><span class=keybinding>Delete, Ctrl-D (Mac)</span></dt>
  904. <dd>Delete the character after the cursor.</dd>
  905. <dt class=command id=command_delWordBefore><code><strong>delWordBefore</strong></code><span class=keybinding>Alt-Backspace (Mac)</span></dt>
  906. <dd>Delete up to the start of the word before the cursor.</dd>
  907. <dt class=command id=command_delWordAfter><code><strong>delWordAfter</strong></code><span class=keybinding>Alt-D (Mac)</span></dt>
  908. <dd>Delete up to the end of the word after the cursor.</dd>
  909. <dt class=command id=command_delGroupBefore><code><strong>delGroupBefore</strong></code><span class=keybinding>Ctrl-Backspace (PC), Alt-Backspace (Mac)</span></dt>
  910. <dd>Delete to the left of the <a href="#command_goGroupLeft">group</a> before the cursor.</dd>
  911. <dt class=command id=command_delGroupAfter><code><strong>delGroupAfter</strong></code><span class=keybinding>Ctrl-Delete (PC), Ctrl-Alt-Backspace (Mac), Alt-Delete (Mac)</span></dt>
  912. <dd>Delete to the start of the <a href="#command_goGroupLeft">group</a> after the cursor.</dd>
  913. <dt class=command id=command_indentAuto><code><strong>indentAuto</strong></code><span class=keybinding>Shift-Tab</span></dt>
  914. <dd>Auto-indent the current line or selection.</dd>
  915. <dt class=command id=command_indentMore><code><strong>indentMore</strong></code><span class=keybinding>Ctrl-] (PC), Cmd-] (Mac)</span></dt>
  916. <dd>Indent the current line or selection by one <a href="#option_indentUnit">indent unit</a>.</dd>
  917. <dt class=command id=command_indentLess><code><strong>indentLess</strong></code><span class=keybinding>Ctrl-[ (PC), Cmd-[ (Mac)</span></dt>
  918. <dd>Dedent the current line or selection by one <a href="#option_indentUnit">indent unit</a>.</dd>
  919. <dt class=command id=command_insertTab><code><strong>insertTab</strong></code></dt>
  920. <dd>Insert a tab character at the cursor.</dd>
  921. <dt class=command id=command_insertSoftTab><code><strong>insertSoftTab</strong></code></dt>
  922. <dd>Insert the amount of spaces that match the width a tab at
  923. the cursor position would have.</dd>
  924. <dt class=command id=command_defaultTab><code><strong>defaultTab</strong></code><span class=keybinding>Tab</span></dt>
  925. <dd>If something is selected, indent it by
  926. one <a href="#option_indentUnit">indent unit</a>. If nothing is
  927. selected, insert a tab character.</dd>
  928. <dt class=command id=command_transposeChars><code><strong>transposeChars</strong></code><span class=keybinding>Ctrl-T (Mac)</span></dt>
  929. <dd>Swap the characters before and after the cursor.</dd>
  930. <dt class=command id=command_newlineAndIndent><code><strong>newlineAndIndent</strong></code><span class=keybinding>Enter</span></dt>
  931. <dd>Insert a newline and auto-indent the new line.</dd>
  932. <dt class=command id=command_toggleOverwrite><code><strong>toggleOverwrite</strong></code><span class=keybinding>Insert</span></dt>
  933. <dd>Flip the <a href="#toggleOverwrite">overwrite</a> flag.</dd>
  934. <dt class=command id=command_save><code><strong>save</strong></code><span class=keybinding>Ctrl-S (PC), Cmd-S (Mac)</span></dt>
  935. <dd>Not defined by the core library, only referred to in
  936. key maps. Intended to provide an easy way for user code to define
  937. a save command.</dd>
  938. <dt class=command id=command_find><code><strong>find</strong></code><span class=keybinding>Ctrl-F (PC), Cmd-F (Mac)</span></dt>
  939. <dt class=command id=command_findNext><code><strong>findNext</strong></code><span class=keybinding>Ctrl-G (PC), Cmd-G (Mac)</span></dt>
  940. <dt class=command id=command_findPrev><code><strong>findPrev</strong></code><span class=keybinding>Shift-Ctrl-G (PC), Shift-Cmd-G (Mac)</span></dt>
  941. <dt class=command id=command_replace><code><strong>replace</strong></code><span class=keybinding>Shift-Ctrl-F (PC), Cmd-Alt-F (Mac)</span></dt>
  942. <dt class=command id=command_replaceAll><code><strong>replaceAll</strong></code><span class=keybinding>Shift-Ctrl-R (PC), Shift-Cmd-Alt-F (Mac)</span></dt>
  943. <dd>Not defined by the core library, but defined in
  944. the <a href="#addon_search">search addon</a> (or custom client
  945. addons).</dd>
  946. </dl>
  947. </section>
  948. <section id=styling>
  949. <h2>Customized Styling</h2>
  950. <p>Up to a certain extent, CodeMirror's look can be changed by
  951. modifying style sheet files. The style sheets supplied by modes
  952. simply provide the colors for that mode, and can be adapted in a
  953. very straightforward way. To style the editor itself, it is
  954. possible to alter or override the styles defined
  955. in <a href="../lib/codemirror.css"><code>codemirror.css</code></a>.</p>
  956. <p>Some care must be taken there, since a lot of the rules in this
  957. file are necessary to have CodeMirror function properly. Adjusting
  958. colors should be safe, of course, and with some care a lot of
  959. other things can be changed as well. The CSS classes defined in
  960. this file serve the following roles:</p>
  961. <dl>
  962. <dt id="class_CodeMirror"><code><strong>CodeMirror</strong></code></dt>
  963. <dd>The outer element of the editor. This should be used for the
  964. editor width, height, borders and positioning. Can also be used
  965. to set styles that should hold for everything inside the editor
  966. (such as font and font size), or to set a background. Setting
  967. this class' <code>height</code> style to <code>auto</code> will
  968. make the editor <a href="../demo/resize.html">resize to fit its
  969. content</a> (it is recommended to also set
  970. the <a href="#option_viewportMargin"><code>viewportMargin</code>
  971. option</a> to <code>Infinity</code> when doing this.</dd>
  972. <dt id="class_CodeMirror_focused"><code><strong>CodeMirror-focused</strong></code></dt>
  973. <dd>Whenever the editor is focused, the top element gets this
  974. class. This is used to hide the cursor and give the selection a
  975. different color when the editor is not focused.</dd>
  976. <dt id="class_CodeMirror_gutters"><code><strong>CodeMirror-gutters</strong></code></dt>
  977. <dd>This is the backdrop for all gutters. Use it to set the
  978. default gutter background color, and optionally add a border on
  979. the right of the gutters.</dd>
  980. <dt id="class_CodeMirror_linenumbers"><code><strong>CodeMirror-linenumbers</strong></code></dt>
  981. <dd>Use this for giving a background or width to the line number
  982. gutter.</dd>
  983. <dt id="class_CodeMirror_linenumber"><code><strong>CodeMirror-linenumber</strong></code></dt>
  984. <dd>Used to style the actual individual line numbers. These
  985. won't be children of the <code>CodeMirror-linenumbers</code>
  986. (plural) element, but rather will be absolutely positioned to
  987. overlay it. Use this to set alignment and text properties for
  988. the line numbers.</dd>
  989. <dt id="class_CodeMirror_lines"><code><strong>CodeMirror-lines</strong></code></dt>
  990. <dd>The visible lines. This is where you specify vertical
  991. padding for the editor content.</dd>
  992. <dt id="class_CodeMirror_cursor"><code><strong>CodeMirror-cursor</strong></code></dt>
  993. <dd>The cursor is a block element that is absolutely positioned.
  994. You can make it look whichever way you want.</dd>
  995. <dt id="class_CodeMirror_selected"><code><strong>CodeMirror-selected</strong></code></dt>
  996. <dd>The selection is represented by <code>span</code> elements
  997. with this class.</dd>
  998. <dt id="class_CodeMirror_matchingbracket"><code><strong>CodeMirror-matchingbracket</strong></code>,
  999. <code><strong>CodeMirror-nonmatchingbracket</strong></code></dt>
  1000. <dd>These are used to style matched (or unmatched) brackets.</dd>
  1001. </dl>
  1002. <p>If your page's style sheets do funky things to
  1003. all <code>div</code> or <code>pre</code> elements (you probably
  1004. shouldn't do that), you'll have to define rules to cancel these
  1005. effects out again for elements under the <code>CodeMirror</code>
  1006. class.</p>
  1007. <p>Themes are also simply CSS files, which define colors for
  1008. various syntactic elements. See the files in
  1009. the <a href="../theme/"><code>theme</code></a> directory.</p>
  1010. </section>
  1011. <section id=api>
  1012. <h2>Programming API</h2>
  1013. <p>A lot of CodeMirror features are only available through its
  1014. API. Thus, you need to write code (or
  1015. use <a href="#addons">addons</a>) if you want to expose them to
  1016. your users.</p>
  1017. <p>Whenever points in the document are represented, the API uses
  1018. objects with <code>line</code> and <code>ch</code> properties.
  1019. Both are zero-based. CodeMirror makes sure to 'clip' any positions
  1020. passed by client code so that they fit inside the document, so you
  1021. shouldn't worry too much about sanitizing your coordinates. If you
  1022. give <code>ch</code> a value of <code>null</code>, or don't
  1023. specify it, it will be replaced with the length of the specified
  1024. line. Such positions may also have a <code>sticky</code> property
  1025. holding <code>"before"</code> or <code>"after"</code>, whether the
  1026. position is associated with the character before or after it. This
  1027. influences, for example, where the cursor is drawn on a
  1028. line-break or bidi-direction boundary.</p>
  1029. <p>Methods prefixed with <code>doc.</code> can, unless otherwise
  1030. specified, be called both on <code>CodeMirror</code> (editor)
  1031. instances and <code>CodeMirror.Doc</code> instances. Methods
  1032. prefixed with <code>cm.</code> are <em>only</em> available
  1033. on <code>CodeMirror</code> instances.</p>
  1034. <h3 id="api_constructor">Constructor</h3>
  1035. <p id="CodeMirror">Constructing an editor instance is done with
  1036. the <code><strong>CodeMirror</strong>(place: Element|fn(Element),
  1037. ?option: object)</code> constructor. If the <code>place</code>
  1038. argument is a DOM element, the editor will be appended to it. If
  1039. it is a function, it will be called, and is expected to place the
  1040. editor into the document. <code>options</code> may be an element
  1041. mapping <a href="#config">option names</a> to values. The options
  1042. that it doesn't explicitly specify (or all options, if it is not
  1043. passed) will be taken
  1044. from <a href="#defaults"><code>CodeMirror.defaults</code></a>.</p>
  1045. <p>Note that the options object passed to the constructor will be
  1046. mutated when the instance's options
  1047. are <a href="#setOption">changed</a>, so you shouldn't share such
  1048. objects between instances.</p>
  1049. <p>See <a href="#fromTextArea"><code>CodeMirror.fromTextArea</code></a>
  1050. for another way to construct an editor instance.</p>
  1051. <h3 id="api_content">Content manipulation methods</h3>
  1052. <dl>
  1053. <dt id="getValue"><code><strong>doc.getValue</strong>(?separator: string) → string</code></dt>
  1054. <dd>Get the current editor content. You can pass it an optional
  1055. argument to specify the string to be used to separate lines
  1056. (defaults to <code>"\n"</code>).</dd>
  1057. <dt id="setValue"><code><strong>doc.setValue</strong>(content: string)</code></dt>
  1058. <dd>Set the editor content.</dd>
  1059. <dt id="getRange"><code><strong>doc.getRange</strong>(from: {line, ch}, to: {line, ch}, ?separator: string) → string</code></dt>
  1060. <dd>Get the text between the given points in the editor, which
  1061. should be <code>{line, ch}</code> objects. An optional third
  1062. argument can be given to indicate the line separator string to
  1063. use (defaults to <code>"\n"</code>).</dd>
  1064. <dt id="replaceRange"><code><strong>doc.replaceRange</strong>(replacement: string, from: {line, ch}, to: {line, ch}, ?origin: string)</code></dt>
  1065. <dd>Replace the part of the document between <code>from</code>
  1066. and <code>to</code> with the given string. <code>from</code>
  1067. and <code>to</code> must be <code>{line, ch}</code>
  1068. objects. <code>to</code> can be left off to simply insert the
  1069. string at position <code>from</code>. When <code>origin</code>
  1070. is given, it will be passed on
  1071. to <a href="#event_change"><code>"change"</code> events</a>, and
  1072. its first letter will be used to determine whether this change
  1073. can be merged with previous history events, in the way described
  1074. for <a href="#selection_origin">selection origins</a>.</dd>
  1075. <dt id="getLine"><code><strong>doc.getLine</strong>(n: integer) → string</code></dt>
  1076. <dd>Get the content of line <code>n</code>.</dd>
  1077. <dt id="lineCount"><code><strong>doc.lineCount</strong>() → integer</code></dt>
  1078. <dd>Get the number of lines in the editor.</dd>
  1079. <dt id="firstLine"><code><strong>doc.firstLine</strong>() → integer</code></dt>
  1080. <dd>Get the number of first line in the editor. This will
  1081. usually be zero but for <a href="#linkedDoc_from">linked sub-views</a>,
  1082. or <a href="#api_doc">documents</a> instantiated with a non-zero
  1083. first line, it might return other values.</dd>
  1084. <dt id="lastLine"><code><strong>doc.lastLine</strong>() → integer</code></dt>
  1085. <dd>Get the number of last line in the editor. This will
  1086. usually be <code>doc.lineCount() - 1</code>,
  1087. but for <a href="#linkedDoc_from">linked sub-views</a>,
  1088. it might return other values.</dd>
  1089. <dt id="getLineHandle"><code><strong>doc.getLineHandle</strong>(num: integer) → LineHandle</code></dt>
  1090. <dd>Fetches the line handle for the given line number.</dd>
  1091. <dt id="getLineNumber"><code><strong>doc.getLineNumber</strong>(handle: LineHandle) → integer</code></dt>
  1092. <dd>Given a line handle, returns the current position of that
  1093. line (or <code>null</code> when it is no longer in the
  1094. document).</dd>
  1095. <dt id="eachLine"><code><strong>doc.eachLine</strong>(f: (line: LineHandle))</code></dt>
  1096. <dt><code><strong>doc.eachLine</strong>(start: integer, end: integer, f: (line: LineHandle))</code></dt>
  1097. <dd>Iterate over the whole document, or if <code>start</code>
  1098. and <code>end</code> line numbers are given, the range
  1099. from <code>start</code> up to (not including) <code>end</code>,
  1100. and call <code>f</code> for each line, passing the line handle.
  1101. This is a faster way to visit a range of line handlers than
  1102. calling <a href="#getLineHandle"><code>getLineHandle</code></a>
  1103. for each of them. Note that line handles have
  1104. a <code>text</code> property containing the line's content (as a
  1105. string).</dd>
  1106. <dt id="markClean"><code><strong>doc.markClean</strong>()</code></dt>
  1107. <dd>Set the editor content as 'clean', a flag that it will
  1108. retain until it is edited, and which will be set again when such
  1109. an edit is undone again. Useful to track whether the content
  1110. needs to be saved. This function is deprecated in favor
  1111. of <a href="#changeGeneration"><code>changeGeneration</code></a>,
  1112. which allows multiple subsystems to track different notions of
  1113. cleanness without interfering.</dd>
  1114. <dt id="changeGeneration"><code><strong>doc.changeGeneration</strong>(?closeEvent: boolean) → integer</code></dt>
  1115. <dd>Returns a number that can later be passed
  1116. to <a href="#isClean"><code>isClean</code></a> to test whether
  1117. any edits were made (and not undone) in the meantime.
  1118. If <code>closeEvent</code> is true, the current history event
  1119. will be ‘closed’, meaning it can't be combined with further
  1120. changes (rapid typing or deleting events are typically
  1121. combined).</dd>
  1122. <dt id="isClean"><code><strong>doc.isClean</strong>(?generation: integer) → boolean</code></dt>
  1123. <dd>Returns whether the document is currently clean — not
  1124. modified since initialization or the last call
  1125. to <a href="#markClean"><code>markClean</code></a> if no
  1126. argument is passed, or since the matching call
  1127. to <a href="#changeGeneration"><code>changeGeneration</code></a>
  1128. if a generation value is given.</dd>
  1129. </dl>
  1130. <h3 id="api_selection">Cursor and selection methods</h3>
  1131. <dl>
  1132. <dt id="getSelection"><code><strong>doc.getSelection</strong>(?lineSep: string) → string</code></dt>
  1133. <dd>Get the currently selected code. Optionally pass a line
  1134. separator to put between the lines in the output. When multiple
  1135. selections are present, they are concatenated with instances
  1136. of <code>lineSep</code> in between.</dd>
  1137. <dt id="getSelections"><code><strong>doc.getSelections</strong>(?lineSep: string) → array&lt;string&gt;</code></dt>
  1138. <dd>Returns an array containing a string for each selection,
  1139. representing the content of the selections.</dd>
  1140. <dt id="replaceSelection"><code><strong>doc.replaceSelection</strong>(replacement: string, ?select: string)</code></dt>
  1141. <dd>Replace the selection(s) with the given string. By default,
  1142. the new selection ends up after the inserted text. The
  1143. optional <code>select</code> argument can be used to change
  1144. this—passing <code>"around"</code> will cause the new text to be
  1145. selected, passing <code>"start"</code> will collapse the
  1146. selection to the start of the inserted text.</dd>
  1147. <dt id="replaceSelections"><code><strong>doc.replaceSelections</strong>(replacements: array&lt;string&gt;, ?select: string)</code></dt>
  1148. <dd>The length of the given array should be the same as the
  1149. number of active selections. Replaces the content of the
  1150. selections with the strings in the array.
  1151. The <code>select</code> argument works the same as
  1152. in <a href="#replaceSelection"><code>replaceSelection</code></a>.</dd>
  1153. <dt id="getCursor"><code><strong>doc.getCursor</strong>(?start: string) → {line, ch}</code></dt>
  1154. <dd>Retrieve one end of the <em>primary</em>
  1155. selection. <code>start</code> is an optional string indicating
  1156. which end of the selection to return. It may
  1157. be <code>"from"</code>, <code>"to"</code>, <code>"head"</code>
  1158. (the side of the selection that moves when you press
  1159. shift+arrow), or <code>"anchor"</code> (the fixed side of the
  1160. selection). Omitting the argument is the same as
  1161. passing <code>"head"</code>. A <code>{line, ch}</code> object
  1162. will be returned.</dd>
  1163. <dt id="listSelections"><code><strong>doc.listSelections</strong>() → array&lt;{anchor, head}&gt;</code></dt>
  1164. <dd>Retrieves a list of all current selections. These will
  1165. always be sorted, and never overlap (overlapping selections are
  1166. merged). Each object in the array contains <code>anchor</code>
  1167. and <code>head</code> properties referring to <code>{line,
  1168. ch}</code> objects.</dd>
  1169. <dt id="somethingSelected"><code><strong>doc.somethingSelected</strong>() → boolean</code></dt>
  1170. <dd>Return true if any text is selected.</dd>
  1171. <dt id="setCursor"><code><strong>doc.setCursor</strong>(pos: {line, ch}|number, ?ch: number, ?options: object)</code></dt>
  1172. <dd>Set the cursor position. You can either pass a
  1173. single <code>{line, ch}</code> object, or the line and the
  1174. character as two separate parameters. Will replace all
  1175. selections with a single, empty selection at the given position.
  1176. The supported options are the same as for <a href="#setSelection"><code>setSelection</code></a>.</dd>
  1177. <dt id="setSelection"><code><strong>doc.setSelection</strong>(anchor: {line, ch}, ?head: {line, ch}, ?options: object)</code></dt>
  1178. <dd>Set a single selection range. <code>anchor</code>
  1179. and <code>head</code> should be <code>{line, ch}</code>
  1180. objects. <code>head</code> defaults to <code>anchor</code> when
  1181. not given. These options are supported:
  1182. <dl>
  1183. <dt id="selection_scroll"><code><strong>scroll</strong>: boolean</code></dt>
  1184. <dd>Determines whether the selection head should be scrolled
  1185. into view. Defaults to true.</dd>
  1186. <dt id="selection_origin"><code><strong>origin</strong>: string</code></dt>
  1187. <dd>Determines whether the selection history event may be
  1188. merged with the previous one. When an origin starts with the
  1189. character <code>+</code>, and the last recorded selection had
  1190. the same origin and was similar (close
  1191. in <a href="#option_historyEventDelay">time</a>, both
  1192. collapsed or both non-collapsed), the new one will replace the
  1193. old one. When it starts with <code>*</code>, it will always
  1194. replace the previous event (if that had the same origin).
  1195. Built-in motion uses the <code>"+move"</code> origin. User input uses the <code>"+input"</code> origin.</dd>
  1196. <dt id="selection_bias"><code><strong>bias</strong>: number</code></dt>
  1197. <dd>Determine the direction into which the selection endpoints
  1198. should be adjusted when they fall inside
  1199. an <a href="#mark_atomic">atomic</a> range. Can be either -1
  1200. (backward) or 1 (forward). When not given, the bias will be
  1201. based on the relative position of the old selection—the editor
  1202. will try to move further away from that, to prevent getting
  1203. stuck.</dd>
  1204. </dl></dd>
  1205. <dt id="setSelections"><code><strong>doc.setSelections</strong>(ranges: array&lt;{anchor, head}&gt;, ?primary: integer, ?options: object)</code></dt>
  1206. <dd>Sets a new set of selections. There must be at least one
  1207. selection in the given array. When <code>primary</code> is a
  1208. number, it determines which selection is the primary one. When
  1209. it is not given, the primary index is taken from the previous
  1210. selection, or set to the last range if the previous selection
  1211. had less ranges than the new one. Supports the same options
  1212. as <a href="#setSelection"><code>setSelection</code></a>.</dd>
  1213. <dt id="addSelection"><code><strong>doc.addSelection</strong>(anchor: {line, ch}, ?head: {line, ch})</code></dt>
  1214. <dd>Adds a new selection to the existing set of selections, and
  1215. makes it the primary selection.</dd>
  1216. <dt id="extendSelection"><code><strong>doc.extendSelection</strong>(from: {line, ch}, ?to: {line, ch}, ?options: object)</code></dt>
  1217. <dd>Similar
  1218. to <a href="#setSelection"><code>setSelection</code></a>, but
  1219. will, if shift is held or
  1220. the <a href="#setExtending">extending</a> flag is set, move the
  1221. head of the selection while leaving the anchor at its current
  1222. place. <code>to</code> is optional, and can be passed to ensure
  1223. a region (for example a word or paragraph) will end up selected
  1224. (in addition to whatever lies between that region and the
  1225. current anchor). When multiple selections are present, all but
  1226. the primary selection will be dropped by this method.
  1227. Supports the same options as <a href="#setSelection"><code>setSelection</code></a>.</dd>
  1228. <dt id="extendSelections"><code><strong>doc.extendSelections</strong>(heads: array&lt;{line, ch}&gt;, ?options: object)</code></dt>
  1229. <dd>An equivalent
  1230. of <a href="#extendSelection"><code>extendSelection</code></a>
  1231. that acts on all selections at once.</dd>
  1232. <dt id="extendSelectionsBy"><code><strong>doc.extendSelectionsBy</strong>(f: function(range: {anchor, head}) → {line, ch}), ?options: object)</code></dt>
  1233. <dd>Applies the given function to all existing selections, and
  1234. calls <a href="#extendSelections"><code>extendSelections</code></a>
  1235. on the result.</dd>
  1236. <dt id="setExtending"><code><strong>doc.setExtending</strong>(value: boolean)</code></dt>
  1237. <dd>Sets or clears the 'extending' flag, which acts similar to
  1238. the shift key, in that it will cause cursor movement and calls
  1239. to <a href="#extendSelection"><code>extendSelection</code></a>
  1240. to leave the selection anchor in place.</dd>
  1241. <dt id="getExtending"><code><strong>doc.getExtending</strong>() → boolean</code></dt>
  1242. <dd>Get the value of the 'extending' flag.</dd>
  1243. <dt id="hasFocus"><code><strong>cm.hasFocus</strong>() → boolean</code></dt>
  1244. <dd>Tells you whether the editor currently has focus.</dd>
  1245. <dt id="findPosH"><code><strong>cm.findPosH</strong>(start: {line, ch}, amount: integer, unit: string, visually: boolean) → {line, ch, ?hitSide: boolean}</code></dt>
  1246. <dd>Used to find the target position for horizontal cursor
  1247. motion. <code>start</code> is a <code>{line, ch}</code>
  1248. object, <code>amount</code> an integer (may be negative),
  1249. and <code>unit</code> one of the
  1250. string <code>"char"</code>, <code>"column"</code>,
  1251. or <code>"word"</code>. Will return a position that is produced
  1252. by moving <code>amount</code> times the distance specified
  1253. by <code>unit</code>. When <code>visually</code> is true, motion
  1254. in right-to-left text will be visual rather than logical. When
  1255. the motion was clipped by hitting the end or start of the
  1256. document, the returned value will have a <code>hitSide</code>
  1257. property set to true.</dd>
  1258. <dt id="findPosV"><code><strong>cm.findPosV</strong>(start: {line, ch}, amount: integer, unit: string) → {line, ch, ?hitSide: boolean}</code></dt>
  1259. <dd>Similar to <a href="#findPosH"><code>findPosH</code></a>,
  1260. but used for vertical motion. <code>unit</code> may
  1261. be <code>"line"</code> or <code>"page"</code>. The other
  1262. arguments and the returned value have the same interpretation as
  1263. they have in <code>findPosH</code>.</dd>
  1264. <dt id="findWordAt"><code><strong>cm.findWordAt</strong>(pos: {line, ch}) → {anchor: {line, ch}, head: {line, ch}}</code></dt>
  1265. <dd>Returns the start and end of the 'word' (the stretch of
  1266. letters, whitespace, or punctuation) at the given position.</dd>
  1267. </dl>
  1268. <h3 id="api_configuration">Configuration methods</h3>
  1269. <dl>
  1270. <dt id="setOption"><code><strong>cm.setOption</strong>(option: string, value: any)</code></dt>
  1271. <dd>Change the configuration of the editor. <code>option</code>
  1272. should the name of an <a href="#config">option</a>,
  1273. and <code>value</code> should be a valid value for that
  1274. option.</dd>
  1275. <dt id="getOption"><code><strong>cm.getOption</strong>(option: string) → any</code></dt>
  1276. <dd>Retrieves the current value of the given option for this
  1277. editor instance.</dd>
  1278. <dt id="addKeyMap"><code><strong>cm.addKeyMap</strong>(map: object, bottom: boolean)</code></dt>
  1279. <dd>Attach an additional <a href="#keymaps">key map</a> to the
  1280. editor. This is mostly useful for addons that need to register
  1281. some key handlers without trampling on
  1282. the <a href="#option_extraKeys"><code>extraKeys</code></a>
  1283. option. Maps added in this way have a higher precedence than
  1284. the <code>extraKeys</code>
  1285. and <a href="#option_keyMap"><code>keyMap</code></a> options,
  1286. and between them, the maps added earlier have a lower precedence
  1287. than those added later, unless the <code>bottom</code> argument
  1288. was passed, in which case they end up below other key maps added
  1289. with this method.</dd>
  1290. <dt id="removeKeyMap"><code><strong>cm.removeKeyMap</strong>(map: object)</code></dt>
  1291. <dd>Disable a keymap added
  1292. with <a href="#addKeyMap"><code>addKeyMap</code></a>. Either
  1293. pass in the key map object itself, or a string, which will be
  1294. compared against the <code>name</code> property of the active
  1295. key maps.</dd>
  1296. <dt id="addOverlay"><code><strong>cm.addOverlay</strong>(mode: string|object, ?options: object)</code></dt>
  1297. <dd>Enable a highlighting overlay. This is a stateless mini-mode
  1298. that can be used to add extra highlighting. For example,
  1299. the <a href="../demo/search.html">search addon</a> uses it to
  1300. highlight the term that's currently being
  1301. searched. <code>mode</code> can be a <a href="#option_mode">mode
  1302. spec</a> or a mode object (an object with
  1303. a <a href="#token"><code>token</code></a> method).
  1304. The <code>options</code> parameter is optional. If given, it
  1305. should be an object, optionally containing the following options:
  1306. <dl>
  1307. <dt><code><strong>opaque</strong>: bool</code></dt>
  1308. <dd>Defaults to off, but can be given to allow the overlay
  1309. styling, when not <code>null</code>, to override the styling of
  1310. the base mode entirely, instead of the two being applied
  1311. together.</dd>
  1312. <dt><code><strong>priority</strong>: number</code></dt>
  1313. <dd>Determines the ordering in which the overlays are
  1314. applied. Those with high priority are applied after those
  1315. with lower priority, and able to override the opaqueness of
  1316. the ones that come before. Defaults to 0.</dd>
  1317. </dl>
  1318. </dd>
  1319. <dt id="removeOverlay"><code><strong>cm.removeOverlay</strong>(mode: string|object)</code></dt>
  1320. <dd>Pass this the exact value passed for the <code>mode</code>
  1321. parameter to <a href="#addOverlay"><code>addOverlay</code></a>,
  1322. or a string that corresponds to the <code>name</code> property of
  1323. that value, to remove an overlay again.</dd>
  1324. <dt id="on"><code><strong>cm.on</strong>(type: string, func: (...args))</code></dt>
  1325. <dd>Register an event handler for the given event type (a
  1326. string) on the editor instance. There is also
  1327. a <code>CodeMirror.on(object, type, func)</code> version
  1328. that allows registering of events on any object.</dd>
  1329. <dt id="off"><code><strong>cm.off</strong>(type: string, func: (...args))</code></dt>
  1330. <dd>Remove an event handler on the editor instance. An
  1331. equivalent <code>CodeMirror.off(object, type,
  1332. func)</code> also exists.</dd>
  1333. </dl>
  1334. <h3 id="api_doc">Document management methods</h3>
  1335. <p id="Doc">Each editor is associated with an instance
  1336. of <code>CodeMirror.Doc</code>, its document. A document
  1337. represents the editor content, plus a selection, an undo history,
  1338. and a <a href="#option_mode">mode</a>. A document can only be
  1339. associated with a single editor at a time. You can create new
  1340. documents by calling the <code>CodeMirror.Doc(text: string, mode:
  1341. Object, firstLineNumber: ?number, lineSeparator: ?string)</code>
  1342. constructor. The last three arguments are optional and can be used
  1343. to set a mode for the document, make it start at a line number
  1344. other than 0, and set a specific line separator respectively.</p>
  1345. <dl>
  1346. <dt id="getDoc"><code><strong>cm.getDoc</strong>() → Doc</code></dt>
  1347. <dd>Retrieve the currently active document from an editor.</dd>
  1348. <dt id="getEditor"><code><strong>doc.getEditor</strong>() → CodeMirror</code></dt>
  1349. <dd>Retrieve the editor associated with a document. May
  1350. return <code>null</code>.</dd>
  1351. <dt id="swapDoc"><code><strong>cm.swapDoc</strong>(doc: CodeMirror.Doc) → Doc</code></dt>
  1352. <dd>Attach a new document to the editor. Returns the old
  1353. document, which is now no longer associated with an editor.</dd>
  1354. <dt id="copy"><code><strong>doc.copy</strong>(copyHistory: boolean) → Doc</code></dt>
  1355. <dd>Create an identical copy of the given doc.
  1356. When <code>copyHistory</code> is true, the history will also be
  1357. copied. Can not be called directly on an editor.</dd>
  1358. <dt id="linkedDoc"><code><strong>doc.linkedDoc</strong>(options: object) → Doc</code></dt>
  1359. <dd>Create a new document that's linked to the target document.
  1360. Linked documents will stay in sync (changes to one are also
  1361. applied to the other) until <a href="#unlinkDoc">unlinked</a>.
  1362. These are the options that are supported:
  1363. <dl>
  1364. <dt id="linkedDoc_sharedHist"><code><strong>sharedHist</strong>: boolean</code></dt>
  1365. <dd>When turned on, the linked copy will share an undo
  1366. history with the original. Thus, something done in one of
  1367. the two can be undone in the other, and vice versa.</dd>
  1368. <dt id="linkedDoc_from"><code><strong>from</strong>: integer</code></dt>
  1369. <dt id="linkedDoc_to"><code><strong>to</strong>: integer</code></dt>
  1370. <dd>Can be given to make the new document a subview of the
  1371. original. Subviews only show a given range of lines. Note
  1372. that line coordinates inside the subview will be consistent
  1373. with those of the parent, so that for example a subview
  1374. starting at line 10 will refer to its first line as line 10,
  1375. not 0.</dd>
  1376. <dt id="linkedDoc_mode"><code><strong>mode</strong>: string|object</code></dt>
  1377. <dd>By default, the new document inherits the mode of the
  1378. parent. This option can be set to
  1379. a <a href="#option_mode">mode spec</a> to give it a
  1380. different mode.</dd>
  1381. </dl></dd>
  1382. <dt id="unlinkDoc"><code><strong>doc.unlinkDoc</strong>(doc: CodeMirror.Doc)</code></dt>
  1383. <dd>Break the link between two documents. After calling this,
  1384. changes will no longer propagate between the documents, and, if
  1385. they had a shared history, the history will become
  1386. separate.</dd>
  1387. <dt id="iterLinkedDocs"><code><strong>doc.iterLinkedDocs</strong>(function: (doc: CodeMirror.Doc, sharedHist: boolean))</code></dt>
  1388. <dd>Will call the given function for all documents linked to the
  1389. target document. It will be passed two arguments, the linked document
  1390. and a boolean indicating whether that document shares history
  1391. with the target.</dd>
  1392. </dl>
  1393. <h3 id="api_history">History-related methods</h3>
  1394. <dl>
  1395. <dt id="undo"><code><strong>doc.undo</strong>()</code></dt>
  1396. <dd>Undo one edit (if any undo events are stored).</dd>
  1397. <dt id="redo"><code><strong>doc.redo</strong>()</code></dt>
  1398. <dd>Redo one undone edit.</dd>
  1399. <dt id="undoSelection"><code><strong>doc.undoSelection</strong>()</code></dt>
  1400. <dd>Undo one edit or selection change.</dd>
  1401. <dt id="redoSelection"><code><strong>doc.redoSelection</strong>()</code></dt>
  1402. <dd>Redo one undone edit or selection change.</dd>
  1403. <dt id="historySize"><code><strong>doc.historySize</strong>() → {undo: integer, redo: integer}</code></dt>
  1404. <dd>Returns an object with <code>{undo, redo}</code> properties,
  1405. both of which hold integers, indicating the amount of stored
  1406. undo and redo operations.</dd>
  1407. <dt id="clearHistory"><code><strong>doc.clearHistory</strong>()</code></dt>
  1408. <dd>Clears the editor's undo history.</dd>
  1409. <dt id="getHistory"><code><strong>doc.getHistory</strong>() → object</code></dt>
  1410. <dd>Get a (JSON-serializable) representation of the undo history.</dd>
  1411. <dt id="setHistory"><code><strong>doc.setHistory</strong>(history: object)</code></dt>
  1412. <dd>Replace the editor's undo history with the one provided,
  1413. which must be a value as returned
  1414. by <a href="#getHistory"><code>getHistory</code></a>. Note that
  1415. this will have entirely undefined results if the editor content
  1416. isn't also the same as it was when <code>getHistory</code> was
  1417. called.</dd>
  1418. </dl>
  1419. <h3 id="api_marker">Text-marking methods</h3>
  1420. <dl>
  1421. <dt id="markText"><code><strong>doc.markText</strong>(from: {line, ch}, to: {line, ch}, ?options: object) → TextMarker</code></dt>
  1422. <dd>Can be used to mark a range of text with a specific CSS
  1423. class name. <code>from</code> and <code>to</code> should
  1424. be <code>{line, ch}</code> objects. The <code>options</code>
  1425. parameter is optional. When given, it should be an object that
  1426. may contain the following configuration options:
  1427. <dl>
  1428. <dt id="mark_className"><code><strong>className</strong>: string</code></dt>
  1429. <dd>Assigns a CSS class to the marked stretch of text.</dd>
  1430. <dt id="mark_inclusiveLeft"><code><strong>inclusiveLeft</strong>: boolean</code></dt>
  1431. <dd>Determines whether
  1432. text inserted on the left of the marker will end up inside
  1433. or outside of it.</dd>
  1434. <dt id="mark_inclusiveRight"><code><strong>inclusiveRight</strong>: boolean</code></dt>
  1435. <dd>Like <code>inclusiveLeft</code>,
  1436. but for the right side.</dd>
  1437. <dt id="mark_selectLeft"><code><strong>selectLeft</strong>: boolean</code></dt>
  1438. <dd>For atomic ranges, determines whether the cursor is allowed
  1439. to be placed directly to the left of the range. Has no effect on
  1440. non-atomic ranges.</dd>
  1441. <dt id="mark_selectRight"><code><strong>selectRight</strong>: boolean</code></dt>
  1442. <dd>Like <code>selectLeft</code>,
  1443. but for the right side.</dd>
  1444. <dt id="mark_atomic"><code><strong>atomic</strong>: boolean</code></dt>
  1445. <dd>Atomic ranges act as a single unit when cursor movement is
  1446. concerned—i.e. it is impossible to place the cursor inside of
  1447. them. You can control whether the cursor is allowed to be placed
  1448. directly before or after them using <code>selectLeft</code>
  1449. or <code>selectRight</code>. If <code>selectLeft</code>
  1450. (or right) is not provided, then <code>inclusiveLeft</code> (or
  1451. right) will control this behavior.</dd>
  1452. <dt id="mark_collapsed"><code><strong>collapsed</strong>: boolean</code></dt>
  1453. <dd>Collapsed ranges do not show up in the display. Setting a
  1454. range to be collapsed will automatically make it atomic.</dd>
  1455. <dt id="mark_clearOnEnter"><code><strong>clearOnEnter</strong>: boolean</code></dt>
  1456. <dd>When enabled, will cause the mark to clear itself whenever
  1457. the cursor enters its range. This is mostly useful for
  1458. text-replacement widgets that need to 'snap open' when the
  1459. user tries to edit them. The
  1460. <a href="#event_clear"><code>"clear"</code></a> event
  1461. fired on the range handle can be used to be notified when this
  1462. happens.</dd>
  1463. <dt id="mark_clearWhenEmpty"><code><strong>clearWhenEmpty</strong>: boolean</code></dt>
  1464. <dd>Determines whether the mark is automatically cleared when
  1465. it becomes empty. Default is true.</dd>
  1466. <dt id="mark_replacedWith"><code><strong>replacedWith</strong>: Element</code></dt>
  1467. <dd>Use a given node to display this range. Implies both
  1468. collapsed and atomic. The given DOM node <em>must</em> be an
  1469. inline element (as opposed to a block element).</dd>
  1470. <dt><code><strong>handleMouseEvents</strong>: boolean</code></dt>
  1471. <dd>When <code>replacedWith</code> is given, this determines
  1472. whether the editor will capture mouse and drag events
  1473. occurring in this widget. Default is false—the events will be
  1474. left alone for the default browser handler, or specific
  1475. handlers on the widget, to capture.</dd>
  1476. <dt id="mark_readOnly"><code><strong>readOnly</strong>: boolean</code></dt>
  1477. <dd>A read-only span can, as long as it is not cleared, not be
  1478. modified except by
  1479. calling <a href="#setValue"><code>setValue</code></a> to reset
  1480. the whole document. <em>Note:</em> adding a read-only span
  1481. currently clears the undo history of the editor, because
  1482. existing undo events being partially nullified by read-only
  1483. spans would corrupt the history (in the current
  1484. implementation).</dd>
  1485. <dt id="mark_addToHistory"><code><strong>addToHistory</strong>: boolean</code></dt>
  1486. <dd>When set to true (default is false), adding this marker
  1487. will create an event in the undo history that can be
  1488. individually undone (clearing the marker).</dd>
  1489. <dt id="mark_startStyle"><code><strong>startStyle</strong>: string</code></dt><dd>Can be used to specify
  1490. an extra CSS class to be applied to the leftmost span that
  1491. is part of the marker.</dd>
  1492. <dt id="mark_endStyle"><code><strong>endStyle</strong>: string</code></dt><dd>Equivalent
  1493. to <code>startStyle</code>, but for the rightmost span.</dd>
  1494. <dt id="mark_css"><code><strong>css</strong>: string</code></dt>
  1495. <dd>A string of CSS to be applied to the covered text. For example <code>"color: #fe3"</code>.</dd>
  1496. <dt id="mark_attributes"><code><strong>attributes</strong>: object</code></dt>
  1497. <dd>When given, add the attributes in the given object to the
  1498. elements created for the marked text. Adding <code>class</code> or
  1499. <code>style</code> attributes this way is not supported.</dd>
  1500. <dt id="mark_shared"><code><strong>shared</strong>: boolean</code></dt><dd>When the
  1501. target document is <a href="#linkedDoc">linked</a> to other
  1502. documents, you can set <code>shared</code> to true to make the
  1503. marker appear in all documents. By default, a marker appears
  1504. only in its target document.</dd>
  1505. </dl>
  1506. The method will return an object that represents the marker
  1507. (with constructor <code>CodeMirror.TextMarker</code>), which
  1508. exposes three methods:
  1509. <code><strong>clear</strong>()</code>, to remove the mark,
  1510. <code><strong>find</strong>()</code>, which returns
  1511. a <code>{from, to}</code> object (both holding document
  1512. positions), indicating the current position of the marked range,
  1513. or <code>undefined</code> if the marker is no longer in the
  1514. document, and finally <code><strong>changed</strong>()</code>,
  1515. which you can call if you've done something that might change
  1516. the size of the marker (for example changing the content of
  1517. a <a href="#mark_replacedWith"><code>replacedWith</code></a>
  1518. node), and want to cheaply update the display.</dd>
  1519. <dt id="setBookmark"><code><strong>doc.setBookmark</strong>(pos: {line, ch}, ?options: object) → TextMarker</code></dt>
  1520. <dd>Inserts a bookmark, a handle that follows the text around it
  1521. as it is being edited, at the given position. A bookmark has two
  1522. methods <code>find()</code> and <code>clear()</code>. The first
  1523. returns the current position of the bookmark, if it is still in
  1524. the document, and the second explicitly removes the bookmark.
  1525. The options argument is optional. If given, the following
  1526. properties are recognized:
  1527. <dl>
  1528. <dt><code><strong>widget</strong>: Element</code></dt><dd>Can be used to display a DOM
  1529. node at the current location of the bookmark (analogous to
  1530. the <a href="#mark_replacedWith"><code>replacedWith</code></a>
  1531. option to <a href="#markText"><code>markText</code></a>).</dd>
  1532. <dt><code><strong>insertLeft</strong>: boolean</code></dt><dd>By default, text typed
  1533. when the cursor is on top of the bookmark will end up to the
  1534. right of the bookmark. Set this option to true to make it go
  1535. to the left instead.</dd>
  1536. <dt><code><strong>shared</strong>: boolean</code></dt><dd>See
  1537. the corresponding <a href="#mark_shared">option</a>
  1538. to <code>markText</code>.</dd>
  1539. <dt><code><strong>handleMouseEvents</strong>: boolean</code></dt>
  1540. <dd>As with <a href="#markText"><code>markText</code></a>,
  1541. this determines whether mouse events on the widget inserted
  1542. for this bookmark are handled by CodeMirror. The default is
  1543. false.</dd>
  1544. </dl></dd>
  1545. <dt id="findMarks"><code><strong>doc.findMarks</strong>(from: {line, ch}, to: {line, ch}) → array&lt;TextMarker&gt;</code></dt>
  1546. <dd>Returns an array of all the bookmarks and marked ranges
  1547. found between the given positions (non-inclusive).</dd>
  1548. <dt id="findMarksAt"><code><strong>doc.findMarksAt</strong>(pos: {line, ch}) → array&lt;TextMarker&gt;</code></dt>
  1549. <dd>Returns an array of all the bookmarks and marked ranges
  1550. present at the given position.</dd>
  1551. <dt id="getAllMarks"><code><strong>doc.getAllMarks</strong>() → array&lt;TextMarker&gt;</code></dt>
  1552. <dd>Returns an array containing all marked ranges in the document.</dd>
  1553. </dl>
  1554. <h3 id="api_decoration">Widget, gutter, and decoration methods</h3>
  1555. <dl>
  1556. <dt id="setGutterMarker"><code><strong>doc.setGutterMarker</strong>(line: integer|LineHandle, gutterID: string, value: Element) → LineHandle</code></dt>
  1557. <dd>Sets the gutter marker for the given gutter (identified by
  1558. its CSS class, see
  1559. the <a href="#option_gutters"><code>gutters</code></a> option)
  1560. to the given value. Value can be either <code>null</code>, to
  1561. clear the marker, or a DOM element, to set it. The DOM element
  1562. will be shown in the specified gutter next to the specified
  1563. line.</dd>
  1564. <dt id="clearGutter"><code><strong>doc.clearGutter</strong>(gutterID: string)</code></dt>
  1565. <dd>Remove all gutter markers in
  1566. the <a href="#option_gutters">gutter</a> with the given ID.</dd>
  1567. <dt id="addLineClass"><code><strong>doc.addLineClass</strong>(line: integer|LineHandle, where: string, class: string) → LineHandle</code></dt>
  1568. <dd>Set a CSS class name for the given line. <code>line</code>
  1569. can be a number or a line handle. <code>where</code> determines
  1570. to which element this class should be applied, can can be one
  1571. of <code>"text"</code> (the text element, which lies in front of
  1572. the selection), <code>"background"</code> (a background element
  1573. that will be behind the selection), <code>"gutter"</code> (the
  1574. line's gutter space), or <code>"wrap"</code> (the wrapper node
  1575. that wraps all of the line's elements, including gutter
  1576. elements). <code>class</code> should be the name of the class to
  1577. apply.</dd>
  1578. <dt id="removeLineClass"><code><strong>doc.removeLineClass</strong>(line: integer|LineHandle, where: string, class: string) → LineHandle</code></dt>
  1579. <dd>Remove a CSS class from a line. <code>line</code> can be a
  1580. line handle or number. <code>where</code> should be one
  1581. of <code>"text"</code>, <code>"background"</code>,
  1582. or <code>"wrap"</code>
  1583. (see <a href="#addLineClass"><code>addLineClass</code></a>). <code>class</code>
  1584. can be left off to remove all classes for the specified node, or
  1585. be a string to remove only a specific class.</dd>
  1586. <dt id="lineInfo"><code><strong>doc.lineInfo</strong>(line: integer|LineHandle) → object</code></dt>
  1587. <dd>Returns the line number, text content, and marker status of
  1588. the given line, which can be either a number or a line handle.
  1589. The returned object has the structure <code>{line, handle, text,
  1590. gutterMarkers, textClass, bgClass, wrapClass, widgets}</code>,
  1591. where <code>gutterMarkers</code> is an object mapping gutter IDs
  1592. to marker elements, and <code>widgets</code> is an array
  1593. of <a href="#addLineWidget">line widgets</a> attached to this
  1594. line, and the various class properties refer to classes added
  1595. with <a href="#addLineClass"><code>addLineClass</code></a>.</dd>
  1596. <dt id="addWidget"><code><strong>cm.addWidget</strong>(pos: {line, ch}, node: Element, scrollIntoView: boolean)</code></dt>
  1597. <dd>Puts <code>node</code>, which should be an absolutely
  1598. positioned DOM node, into the editor, positioned right below the
  1599. given <code>{line, ch}</code> position.
  1600. When <code>scrollIntoView</code> is true, the editor will ensure
  1601. that the entire node is visible (if possible). To remove the
  1602. widget again, simply use DOM methods (move it somewhere else, or
  1603. call <code>removeChild</code> on its parent).</dd>
  1604. <dt id="addLineWidget"><code><strong>doc.addLineWidget</strong>(line: integer|LineHandle, node: Element, ?options: object) → LineWidget</code></dt>
  1605. <dd>Adds a line widget, an element shown below a line, spanning
  1606. the whole of the editor's width, and moving the lines below it
  1607. downwards. <code>line</code> should be either an integer or a
  1608. line handle, and <code>node</code> should be a DOM node, which
  1609. will be displayed below the given line. <code>options</code>,
  1610. when given, should be an object that configures the behavior of
  1611. the widget. The following options are supported (all default to
  1612. false):
  1613. <dl>
  1614. <dt><code><strong>coverGutter</strong>: boolean</code></dt>
  1615. <dd>Whether the widget should cover the gutter.</dd>
  1616. <dt><code><strong>noHScroll</strong>: boolean</code></dt>
  1617. <dd>Whether the widget should stay fixed in the face of
  1618. horizontal scrolling.</dd>
  1619. <dt><code><strong>above</strong>: boolean</code></dt>
  1620. <dd>Causes the widget to be placed above instead of below
  1621. the text of the line.</dd>
  1622. <dt><code><strong>handleMouseEvents</strong>: boolean</code></dt>
  1623. <dd>Determines whether the editor will capture mouse and
  1624. drag events occurring in this widget. Default is false—the
  1625. events will be left alone for the default browser handler,
  1626. or specific handlers on the widget, to capture.</dd>
  1627. <dt><code><strong>insertAt</strong>: integer</code></dt>
  1628. <dd>By default, the widget is added below other widgets for
  1629. the line. This option can be used to place it at a different
  1630. position (zero for the top, N to put it after the Nth other
  1631. widget). Note that this only has effect once, when the
  1632. widget is created.
  1633. <dt><code><strong>className</strong>: string</code></dt>
  1634. <dd>Add an extra CSS class name to the wrapper element
  1635. created for the widget.</dd>
  1636. </dl>
  1637. Note that the widget node will become a descendant of nodes with
  1638. CodeMirror-specific CSS classes, and those classes might in some
  1639. cases affect it. This method returns an object that represents
  1640. the widget placement. It'll have a <code>line</code> property
  1641. pointing at the line handle that it is associated with, and the following methods:
  1642. <dl>
  1643. <dt id="widget_clear"><code><strong>clear</strong>()</code></dt><dd>Removes the widget.</dd>
  1644. <dt id="widget_changed"><code><strong>changed</strong>()</code></dt><dd>Call
  1645. this if you made some change to the widget's DOM node that
  1646. might affect its height. It'll force CodeMirror to update
  1647. the height of the line that contains the widget.</dd>
  1648. </dl>
  1649. </dd>
  1650. </dl>
  1651. <h3 id="api_sizing">Sizing, scrolling and positioning methods</h3>
  1652. <dl>
  1653. <dt id="setSize"><code><strong>cm.setSize</strong>(width: number|string, height: number|string)</code></dt>
  1654. <dd>Programmatically set the size of the editor (overriding the
  1655. applicable <a href="#css-resize">CSS
  1656. rules</a>). <code>width</code> and <code>height</code>
  1657. can be either numbers (interpreted as pixels) or CSS units
  1658. (<code>"100%"</code>, for example). You can
  1659. pass <code>null</code> for either of them to indicate that that
  1660. dimension should not be changed.</dd>
  1661. <dt id="scrollTo"><code><strong>cm.scrollTo</strong>(x: number, y: number)</code></dt>
  1662. <dd>Scroll the editor to a given (pixel) position. Both
  1663. arguments may be left as <code>null</code>
  1664. or <code>undefined</code> to have no effect.</dd>
  1665. <dt id="getScrollInfo"><code><strong>cm.getScrollInfo</strong>() → {left, top, width, height, clientWidth, clientHeight}</code></dt>
  1666. <dd>Get an <code>{left, top, width, height, clientWidth,
  1667. clientHeight}</code> object that represents the current scroll
  1668. position, the size of the scrollable area, and the size of the
  1669. visible area (minus scrollbars).</dd>
  1670. <dt id="scrollIntoView"><code><strong>cm.scrollIntoView</strong>(what: {line, ch}|{left, top, right, bottom}|{from, to}|null, ?margin: number)</code></dt>
  1671. <dd>Scrolls the given position into view. <code>what</code> may
  1672. be <code>null</code> to scroll the cursor into view,
  1673. a <code>{line, ch}</code> position to scroll a character into
  1674. view, a <code>{left, top, right, bottom}</code> pixel range (in
  1675. editor-local coordinates), or a range <code>{from, to}</code>
  1676. containing either two character positions or two pixel squares.
  1677. The <code>margin</code> parameter is optional. When given, it
  1678. indicates the amount of vertical pixels around the given area
  1679. that should be made visible as well.</dd>
  1680. <dt id="cursorCoords"><code><strong>cm.cursorCoords</strong>(where: boolean|{line, ch}, mode: string) → {left, top, bottom}</code></dt>
  1681. <dd>Returns an <code>{left, top, bottom}</code> object
  1682. containing the coordinates of the cursor position.
  1683. If <code>mode</code> is <code>"local"</code>, they will be
  1684. relative to the top-left corner of the editable document. If it
  1685. is <code>"page"</code> or not given, they are relative to the
  1686. top-left corner of the page. If <code>mode</code>
  1687. is <code>"window"</code>, the coordinates are relative to the
  1688. top-left corner of the currently visible (scrolled)
  1689. window. <code>where</code> can be a boolean indicating whether
  1690. you want the start (<code>true</code>) or the end
  1691. (<code>false</code>) of the selection, or, if a <code>{line,
  1692. ch}</code> object is given, it specifies the precise position at
  1693. which you want to measure.</dd>
  1694. <dt id="charCoords"><code><strong>cm.charCoords</strong>(pos: {line, ch}, ?mode: string) → {left, right, top, bottom}</code></dt>
  1695. <dd>Returns the position and dimensions of an arbitrary
  1696. character. <code>pos</code> should be a <code>{line, ch}</code>
  1697. object. This differs from <code>cursorCoords</code> in that
  1698. it'll give the size of the whole character, rather than just the
  1699. position that the cursor would have when it would sit at that
  1700. position.</dd>
  1701. <dt id="coordsChar"><code><strong>cm.coordsChar</strong>(object: {left, top}, ?mode: string) → {line, ch}</code></dt>
  1702. <dd>Given an <code>{left, top}</code> object (e.g. coordinates of a mouse event) returns
  1703. the <code>{line, ch}</code> position that corresponds to it. The
  1704. optional <code>mode</code> parameter determines relative to what
  1705. the coordinates are interpreted. It may
  1706. be <code>"window"</code>, <code>"page"</code> (the default),
  1707. or <code>"local"</code>.</dd>
  1708. <dt id="lineAtHeight"><code><strong>cm.lineAtHeight</strong>(height: number, ?mode: string) → number</code></dt>
  1709. <dd>Computes the line at the given pixel
  1710. height. <code>mode</code> can be one of the same strings
  1711. that <a href="#coordsChar"><code>coordsChar</code></a>
  1712. accepts.</dd>
  1713. <dt id="heightAtLine"><code><strong>cm.heightAtLine</strong>(line: integer|LineHandle, ?mode: string, ?includeWidgets: bool) → number</code></dt>
  1714. <dd>Computes the height of the top of a line, in the coordinate
  1715. system specified by <code>mode</code>
  1716. (see <a href="#coordsChar"><code>coordsChar</code></a>), which
  1717. defaults to <code>"page"</code>. When a line below the bottom of
  1718. the document is specified, the returned value is the bottom of
  1719. the last line in the document. By default, the position of the
  1720. actual text is returned. If `includeWidgets` is true and the
  1721. line has line widgets, the position above the first line widget
  1722. is returned.</dd>
  1723. <dt id="defaultTextHeight"><code><strong>cm.defaultTextHeight</strong>() → number</code></dt>
  1724. <dd>Returns the line height of the default font for the editor.</dd>
  1725. <dt id="defaultCharWidth"><code><strong>cm.defaultCharWidth</strong>() → number</code></dt>
  1726. <dd>Returns the pixel width of an 'x' in the default font for
  1727. the editor. (Note that for non-monospace fonts, this is mostly
  1728. useless, and even for monospace fonts, non-ascii characters
  1729. might have a different width).</dd>
  1730. <dt id="getViewport"><code><strong>cm.getViewport</strong>() → {from: number, to: number}</code></dt>
  1731. <dd>Returns a <code>{from, to}</code> object indicating the
  1732. start (inclusive) and end (exclusive) of the currently rendered
  1733. part of the document. In big documents, when most content is
  1734. scrolled out of view, CodeMirror will only render the visible
  1735. part, and a margin around it. See also
  1736. the <a href="#event_viewportChange"><code>viewportChange</code></a>
  1737. event.</dd>
  1738. <dt id="refresh"><code><strong>cm.refresh</strong>()</code></dt>
  1739. <dd>If your code does something to change the size of the editor
  1740. element (window resizes are already listened for), or unhides
  1741. it, you should probably follow up by calling this method to
  1742. ensure CodeMirror is still looking as intended. See also
  1743. the <a href="#addon_autorefresh">autorefresh addon</a>.</dd>
  1744. </dl>
  1745. <h3 id="api_mode">Mode, state, and token-related methods</h3>
  1746. <p>When writing language-aware functionality, it can often be
  1747. useful to hook into the knowledge that the CodeMirror language
  1748. mode has. See <a href="#modeapi">the section on modes</a> for a
  1749. more detailed description of how these work.</p>
  1750. <dl>
  1751. <dt id="getMode"><code><strong>doc.getMode</strong>() → object</code></dt>
  1752. <dd>Gets the (outer) mode object for the editor. Note that this
  1753. is distinct from <code>getOption("mode")</code>, which gives you
  1754. the mode specification, rather than the resolved, instantiated
  1755. <a href="#defineMode">mode object</a>.</dd>
  1756. <dt id="getModeAt"><code><strong>cm.getModeAt</strong>(pos: {line, ch}) → object</code></dt>
  1757. <dd>Gets the inner mode at a given position. This will return
  1758. the same as <a href="#getMode"><code>getMode</code></a> for
  1759. simple modes, but will return an inner mode for nesting modes
  1760. (such as <code>htmlmixed</code>).</dd>
  1761. <dt id="getTokenAt"><code><strong>cm.getTokenAt</strong>(pos: {line, ch}, ?precise: boolean) → object</code></dt>
  1762. <dd>Retrieves information about the token the current mode found
  1763. before the given position (a <code>{line, ch}</code> object). The
  1764. returned object has the following properties:
  1765. <dl>
  1766. <dt><code><strong>start</strong></code></dt><dd>The character (on the given line) at which the token starts.</dd>
  1767. <dt><code><strong>end</strong></code></dt><dd>The character at which the token ends.</dd>
  1768. <dt><code><strong>string</strong></code></dt><dd>The token's string.</dd>
  1769. <dt><code><strong>type</strong></code></dt><dd>The token type the mode assigned
  1770. to the token, such as <code>"keyword"</code>
  1771. or <code>"comment"</code> (may also be null).</dd>
  1772. <dt><code><strong>state</strong></code></dt><dd>The mode's state at the end of this token.</dd>
  1773. </dl>
  1774. If <code>precise</code> is true, the token will be guaranteed to be accurate based on recent edits. If false or
  1775. not specified, the token will use cached state information, which will be faster but might not be accurate if
  1776. edits were recently made and highlighting has not yet completed.
  1777. </dd>
  1778. <dt id="getLineTokens"><code><strong>cm.getLineTokens</strong>(line: integer, ?precise: boolean) → array&lt;{start, end, string, type, state}&gt;</code></dt>
  1779. <dd>This is similar
  1780. to <a href="#getTokenAt"><code>getTokenAt</code></a>, but
  1781. collects all tokens for a given line into an array. It is much
  1782. cheaper than repeatedly calling <code>getTokenAt</code>, which
  1783. re-parses the part of the line before the token for every call.</dd>
  1784. <dt id="getTokenTypeAt"><code><strong>cm.getTokenTypeAt</strong>(pos: {line, ch}) → string</code></dt>
  1785. <dd>This is a (much) cheaper version
  1786. of <a href="#getTokenAt"><code>getTokenAt</code></a> useful for
  1787. when you just need the type of the token at a given position,
  1788. and no other information. Will return <code>null</code> for
  1789. unstyled tokens, and a string, potentially containing multiple
  1790. space-separated style names, otherwise.</dd>
  1791. <dt id="getHelpers"><code><strong>cm.getHelpers</strong>(pos: {line, ch}, type: string) → array&lt;helper&gt;</code></dt>
  1792. <dd>Fetch the set of applicable helper values for the given
  1793. position. Helpers provide a way to look up functionality
  1794. appropriate for a mode. The <code>type</code> argument provides
  1795. the helper namespace (see
  1796. <a href="#registerHelper"><code>registerHelper</code></a>), in
  1797. which the values will be looked up. When the mode itself has a
  1798. property that corresponds to the <code>type</code>, that
  1799. directly determines the keys that are used to look up the helper
  1800. values (it may be either a single string, or an array of
  1801. strings). Failing that, the mode's <code>helperType</code>
  1802. property and finally the mode's name are used.</dd>
  1803. <dd>For example, the JavaScript mode has a
  1804. property <code>fold</code> containing <code>"brace"</code>. When
  1805. the <code>brace-fold</code> addon is loaded, that defines a
  1806. helper named <code>brace</code> in the <code>fold</code>
  1807. namespace. This is then used by
  1808. the <a href="#addon_foldcode"><code>foldcode</code></a> addon to
  1809. figure out that it can use that folding function to fold
  1810. JavaScript code.</dd>
  1811. <dd>When any <a href="#registerGlobalHelper">'global'</a>
  1812. helpers are defined for the given namespace, their predicates
  1813. are called on the current mode and editor, and all those that
  1814. declare they are applicable will also be added to the array that
  1815. is returned.</dd>
  1816. <dt id="getHelper"><code><strong>cm.getHelper</strong>(pos: {line, ch}, type: string) → helper</code></dt>
  1817. <dd>Returns the first applicable helper value.
  1818. See <a href="#getHelpers"><code>getHelpers</code></a>.</dd>
  1819. <dt id="getStateAfter"><code><strong>cm.getStateAfter</strong>(?line: integer, ?precise: boolean) → object</code></dt>
  1820. <dd>Returns the mode's parser state, if any, at the end of the
  1821. given line number. If no line number is given, the state at the
  1822. end of the document is returned. This can be useful for storing
  1823. parsing errors in the state, or getting other kinds of
  1824. contextual information for a line. <code>precise</code> is defined
  1825. as in <code>getTokenAt()</code>.</dd>
  1826. </dl>
  1827. <h3 id="api_misc">Miscellaneous methods</h3>
  1828. <dl>
  1829. <dt id="operation"><code><strong>cm.operation</strong>(func: () → any) → any</code></dt>
  1830. <dd>CodeMirror internally buffers changes and only updates its
  1831. DOM structure after it has finished performing some operation.
  1832. If you need to perform a lot of operations on a CodeMirror
  1833. instance, you can call this method with a function argument. It
  1834. will call the function, buffering up all changes, and only doing
  1835. the expensive update after the function returns. This can be a
  1836. lot faster. The return value from this method will be the return
  1837. value of your function.</dd>
  1838. <dt id="startOperation"><code><strong>cm.startOperation</strong>()</code></dt>
  1839. <dt id="endOperation"><code><strong>cm.endOperation</strong>()</code></dt>
  1840. <dd>In normal circumstances, use the above <code>operation</code>
  1841. method. But if you want to buffer operations happening asynchronously,
  1842. or that can't all be wrapped in a callback function, you can
  1843. call <code>startOperation</code> to tell CodeMirror to start
  1844. buffering changes, and <code>endOperation</code> to actually
  1845. render all the updates. <em>Be careful:</em> if you use this
  1846. API and forget to call <code>endOperation</code>, the editor will
  1847. just never update.</dd>
  1848. <dt id="indentLine"><code><strong>cm.indentLine</strong>(line: integer, ?dir: string|integer)</code></dt>
  1849. <dd>Adjust the indentation of the given line. The second
  1850. argument (which defaults to <code>"smart"</code>) may be one of:
  1851. <dl>
  1852. <dt><code><strong>"prev"</strong></code></dt>
  1853. <dd>Base indentation on the indentation of the previous line.</dd>
  1854. <dt><code><strong>"smart"</strong></code></dt>
  1855. <dd>Use the mode's smart indentation if available, behave
  1856. like <code>"prev"</code> otherwise.</dd>
  1857. <dt><code><strong>"add"</strong></code></dt>
  1858. <dd>Increase the indentation of the line by
  1859. one <a href="#option_indentUnit">indent unit</a>.</dd>
  1860. <dt><code><strong>"subtract"</strong></code></dt>
  1861. <dd>Reduce the indentation of the line.</dd>
  1862. <dt><code><strong>&lt;integer></strong></code></dt>
  1863. <dd>Add (positive number) or reduce (negative number) the
  1864. indentation by the given amount of spaces.</dd>
  1865. </dl></dd>
  1866. <dt id="toggleOverwrite"><code><strong>cm.toggleOverwrite</strong>(?value: boolean)</code></dt>
  1867. <dd>Switches between overwrite and normal insert mode (when not
  1868. given an argument), or sets the overwrite mode to a specific
  1869. state (when given an argument).</dd>
  1870. <dt id="isReadOnly"><code><strong>cm.isReadOnly</strong>() → boolean</code></dt>
  1871. <dd>Tells you whether the editor's content can be edited by the
  1872. user.</dd>
  1873. <dt id="lineSeparator"><code><strong>doc.lineSeparator</strong>()</code></dt>
  1874. <dd>Returns the preferred line separator string for this
  1875. document, as per the <a href="#option_lineSeparator">option</a>
  1876. by the same name. When that option is <code>null</code>, the
  1877. string <code>"\n"</code> is returned.</dd>
  1878. <dt id="execCommand"><code><strong>cm.execCommand</strong>(name: string)</code></dt>
  1879. <dd>Runs the <a href="#commands">command</a> with the given name on the editor.</dd>
  1880. <dt id="posFromIndex"><code><strong>doc.posFromIndex</strong>(index: integer) → {line, ch}</code></dt>
  1881. <dd>Calculates and returns a <code>{line, ch}</code> object for a
  1882. zero-based <code>index</code> who's value is relative to the start of the
  1883. editor's text. If the <code>index</code> is out of range of the text then
  1884. the returned object is clipped to start or end of the text
  1885. respectively.</dd>
  1886. <dt id="indexFromPos"><code><strong>doc.indexFromPos</strong>(object: {line, ch}) → integer</code></dt>
  1887. <dd>The reverse of <a href="#posFromIndex"><code>posFromIndex</code></a>.</dd>
  1888. <dt id="focus"><code><strong>cm.focus</strong>()</code></dt>
  1889. <dd>Give the editor focus.</dd>
  1890. <dt id="phrase"><code><strong>cm.phrase</strong>(text: string) → string</code></dt>
  1891. <dd>Allow the given string to be translated with
  1892. the <a href="#option_phrases"><code>phrases</code>
  1893. option</a>.</dd>
  1894. <dt id="getInputField"><code><strong>cm.getInputField</strong>() → Element</code></dt>
  1895. <dd>Returns the input field for the editor. Will be a textarea
  1896. or an editable div, depending on the value of
  1897. the <a href="#option_inputStyle"><code>inputStyle</code></a>
  1898. option.</dd>
  1899. <dt id="getWrapperElement"><code><strong>cm.getWrapperElement</strong>() → Element</code></dt>
  1900. <dd>Returns the DOM node that represents the editor, and
  1901. controls its size. Remove this from your tree to delete an
  1902. editor instance.</dd>
  1903. <dt id="getScrollerElement"><code><strong>cm.getScrollerElement</strong>() → Element</code></dt>
  1904. <dd>Returns the DOM node that is responsible for the scrolling
  1905. of the editor.</dd>
  1906. <dt id="getGutterElement"><code><strong>cm.getGutterElement</strong>() → Element</code></dt>
  1907. <dd>Fetches the DOM node that contains the editor gutters.</dd>
  1908. </dl>
  1909. <h3 id="api_static">Static properties</h3>
  1910. <p>The <code>CodeMirror</code> object itself provides
  1911. several useful properties.</p>
  1912. <dl>
  1913. <dt id="version"><code><strong>CodeMirror.version</strong>: string</code></dt>
  1914. <dd>It contains a string that indicates the version of the
  1915. library. This is a triple of
  1916. integers <code>"major.minor.patch"</code>,
  1917. where <code>patch</code> is zero for releases, and something
  1918. else (usually one) for dev snapshots.</dd>
  1919. <dt id="fromTextArea"><code><strong>CodeMirror.fromTextArea</strong>(textArea: TextAreaElement, ?config: object)</code></dt>
  1920. <dd>This method provides another way to initialize an editor. It
  1921. takes a textarea DOM node as first argument and an optional
  1922. configuration object as second. It will replace the textarea
  1923. with a CodeMirror instance, and wire up the form of that
  1924. textarea (if any) to make sure the editor contents are put into
  1925. the textarea when the form is submitted. The text in the
  1926. textarea will provide the content for the editor. A CodeMirror
  1927. instance created this way has three additional methods:
  1928. <dl>
  1929. <dt id="save"><code><strong>cm.save</strong>()</code></dt>
  1930. <dd>Copy the content of the editor into the textarea.</dd>
  1931. <dt id="toTextArea"><code><strong>cm.toTextArea</strong>()</code></dt>
  1932. <dd>Remove the editor, and restore the original textarea (with
  1933. the editor's current content). If you dynamically create and
  1934. destroy editors made with `fromTextArea`, without destroying
  1935. the form they are part of, you should make sure to call
  1936. `toTextArea` to remove the editor, or its `"submit"` handler
  1937. on the form will cause a memory leak.</dd>
  1938. <dt id="getTextArea"><code><strong>cm.getTextArea</strong>() → TextAreaElement</code></dt>
  1939. <dd>Returns the textarea that the instance was based on.</dd>
  1940. </dl>
  1941. </dd>
  1942. <dt id="defaults"><code><strong>CodeMirror.defaults</strong>: object</code></dt>
  1943. <dd>An object containing default values for
  1944. all <a href="#config">options</a>. You can assign to its
  1945. properties to modify defaults (though this won't affect editors
  1946. that have already been created).</dd>
  1947. <dt id="defineExtension"><code><strong>CodeMirror.defineExtension</strong>(name: string, value: any)</code></dt>
  1948. <dd>If you want to define extra methods in terms of the
  1949. CodeMirror API, it is possible to
  1950. use <code>defineExtension</code>. This will cause the given
  1951. value (usually a method) to be added to all CodeMirror instances
  1952. created from then on.</dd>
  1953. <dt id="defineDocExtension"><code><strong>CodeMirror.defineDocExtension</strong>(name: string, value: any)</code></dt>
  1954. <dd>Like <a href="#defineExtension"><code>defineExtension</code></a>,
  1955. but the method will be added to the interface
  1956. for <a href="#Doc"><code>Doc</code></a> objects instead.</dd>
  1957. <dt id="defineOption"><code><strong>CodeMirror.defineOption</strong>(name: string,
  1958. default: any, updateFunc: function)</code></dt>
  1959. <dd>Similarly, <code>defineOption</code> can be used to define new options for
  1960. CodeMirror. The <code>updateFunc</code> will be called with the
  1961. editor instance and the new value when an editor is initialized,
  1962. and whenever the option is modified
  1963. through <a href="#setOption"><code>setOption</code></a>.</dd>
  1964. <dt id="defineInitHook"><code><strong>CodeMirror.defineInitHook</strong>(func: function)</code></dt>
  1965. <dd>If your extension just needs to run some
  1966. code whenever a CodeMirror instance is initialized,
  1967. use <code>CodeMirror.defineInitHook</code>. Give it a function as
  1968. its only argument, and from then on, that function will be called
  1969. (with the instance as argument) whenever a new CodeMirror instance
  1970. is initialized.</dd>
  1971. <dt id="registerHelper"><code><strong>CodeMirror.registerHelper</strong>(type: string, name: string, value: helper)</code></dt>
  1972. <dd>Registers a helper value with the given <code>name</code> in
  1973. the given namespace (<code>type</code>). This is used to define
  1974. functionality that may be looked up by mode. Will create (if it
  1975. doesn't already exist) a property on the <code>CodeMirror</code>
  1976. object for the given <code>type</code>, pointing to an object
  1977. that maps names to values. I.e. after
  1978. doing <code>CodeMirror.registerHelper("hint", "foo",
  1979. myFoo)</code>, the value <code>CodeMirror.hint.foo</code> will
  1980. point to <code>myFoo</code>.</dd>
  1981. <dt id="registerGlobalHelper"><code><strong>CodeMirror.registerGlobalHelper</strong>(type: string, name: string, predicate: fn(mode, CodeMirror), value: helper)</code></dt>
  1982. <dd>Acts
  1983. like <a href="#registerHelper"><code>registerHelper</code></a>,
  1984. but also registers this helper as 'global', meaning that it will
  1985. be included by <a href="#getHelpers"><code>getHelpers</code></a>
  1986. whenever the given <code>predicate</code> returns true when
  1987. called with the local mode and editor.</dd>
  1988. <dt id="Pos"><code><strong>CodeMirror.Pos</strong>(line: integer, ?ch: integer, ?sticky: string)</code></dt>
  1989. <dd>A constructor for the objects that are used to represent
  1990. positions in editor documents. <code>sticky</code> defaults to
  1991. null, but can be set to <code>"before"</code>
  1992. or <code>"after"</code> to make the position explicitly
  1993. associate with the character before or after it.</dd>
  1994. <dt id="changeEnd"><code><strong>CodeMirror.changeEnd</strong>(change: object) → {line, ch}</code></dt>
  1995. <dd>Utility function that computes an end position from a change
  1996. (an object with <code>from</code>, <code>to</code>,
  1997. and <code>text</code> properties, as passed to
  1998. various <a href="#event_change">event handlers</a>). The
  1999. returned position will be the end of the changed
  2000. range, <em>after</em> the change is applied.</dd>
  2001. <dt id="countColumn"><code><strong>CodeMirror.countColumn</strong>(line: string, index: number, tabSize: number) → number</code></dt>
  2002. <dd>Find the column position at a given string index using a given tabsize.</dd>
  2003. </dl>
  2004. </section>
  2005. <section id=addons>
  2006. <h2 id="addons">Addons</h2>
  2007. <p>The <code>addon</code> directory in the distribution contains a
  2008. number of reusable components that implement extra editor
  2009. functionality (on top of extension functions
  2010. like <a href="#defineOption"><code>defineOption</code></a>, <a href="#defineExtension"><code>defineExtension</code></a>,
  2011. and <a href="#registerHelper"><code>registerHelper</code></a>). In
  2012. brief, they are:</p>
  2013. <dl>
  2014. <dt id="addon_dialog"><a href="../addon/dialog/dialog.js"><code>dialog/dialog.js</code></a></dt>
  2015. <dd>Provides a very simple way to query users for text input.
  2016. Adds the <strong><code>openDialog(template, callback, options) →
  2017. closeFunction</code></strong> method to CodeMirror instances,
  2018. which can be called with an HTML fragment or a detached DOM
  2019. node that provides the prompt (should include an <code>input</code>
  2020. or <code>button</code> tag), and a callback function that is called
  2021. when the user presses enter. It returns a function <code>closeFunction</code>
  2022. which, if called, will close the dialog immediately.
  2023. <strong><code>openDialog</code></strong> takes the following options:
  2024. <dl>
  2025. <dt><code><strong>closeOnEnter</strong>: bool</code></dt>
  2026. <dd>If true, the dialog will be closed when the user presses
  2027. enter in the input. Defaults to <code>true</code>.</dd>
  2028. <dt><code><strong>closeOnBlur</strong>: bool</code></dt>
  2029. <dd>Determines whether the dialog is closed when it loses focus. Defaults to <code>true</code>.</dd>
  2030. <dt><code><strong>onKeyDown</strong>: fn(event: KeyboardEvent, value: string, close: fn()) → bool</code></dt>
  2031. <dd>An event handler that will be called whenever <code>keydown</code> fires in the
  2032. dialog's input. If your callback returns <code>true</code>,
  2033. the dialog will not do any further processing of the event.</dd>
  2034. <dt><code><strong>onKeyUp</strong>: fn(event: KeyboardEvent, value: string, close: fn()) → bool</code></dt>
  2035. <dd>Same as <code>onKeyDown</code> but for the
  2036. <code>keyup</code> event.</dd>
  2037. <dt><code><strong>onInput</strong>: fn(event: InputEvent, value: string, close: fn()) → bool</code></dt>
  2038. <dd>Same as <code>onKeyDown</code> but for the
  2039. <code>input</code> event.</dd>
  2040. <dt><code><strong>onClose</strong>: fn(instance)</code>:</dt>
  2041. <dd>A callback that will be called after the dialog has been closed and
  2042. removed from the DOM. No return value.</dd>
  2043. </dl>
  2044. <p>Also adds an <strong><code>openNotification(template, options) →
  2045. closeFunction</code></strong> function that simply shows an HTML
  2046. fragment as a notification at the top of the editor. It takes a
  2047. single option: <code>duration</code>, the amount of time after
  2048. which the notification will be automatically closed. If <code>
  2049. duration</code> is zero, the dialog will not be closed automatically.</p>
  2050. <p>Depends on <code>addon/dialog/dialog.css</code>.</p></dd>
  2051. <dt id="addon_searchcursor"><a href="../addon/search/searchcursor.js"><code>search/searchcursor.js</code></a></dt>
  2052. <dd>Adds the <code>getSearchCursor(query, start, options) →
  2053. cursor</code> method to CodeMirror instances, which can be used
  2054. to implement search/replace functionality. <code>query</code>
  2055. can be a regular expression or a string. <code>start</code>
  2056. provides the starting position of the search. It can be
  2057. a <code>{line, ch}</code> object, or can be left off to default
  2058. to the start of the document. <code>options</code> is an
  2059. optional object, which can contain the property `caseFold:
  2060. false` to disable case folding when matching a string, or the
  2061. property `multiline: disable` to disable multi-line matching for
  2062. regular expressions (which may help performance). A search
  2063. cursor has the following methods:
  2064. <dl>
  2065. <dt><code><strong>findNext</strong>() → boolean</code></dt>
  2066. <dt><code><strong>findPrevious</strong>() → boolean</code></dt>
  2067. <dd>Search forward or backward from the current position.
  2068. The return value indicates whether a match was found. If
  2069. matching a regular expression, the return value will be the
  2070. array returned by the <code>match</code> method, in case you
  2071. want to extract matched groups.</dd>
  2072. <dt><code><strong>from</strong>() → {line, ch}</code></dt>
  2073. <dt><code><strong>to</strong>() → {line, ch}</code></dt>
  2074. <dd>These are only valid when the last call
  2075. to <code>findNext</code> or <code>findPrevious</code> did
  2076. not return false. They will return <code>{line, ch}</code>
  2077. objects pointing at the start and end of the match.</dd>
  2078. <dt><code><strong>replace</strong>(text: string, ?origin: string)</code></dt>
  2079. <dd>Replaces the currently found match with the given text
  2080. and adjusts the cursor position to reflect the
  2081. replacement.</dd>
  2082. </dl></dd>
  2083. <dt id="addon_search"><a href="../addon/search/search.js"><code>search/search.js</code></a></dt>
  2084. <dd>Implements the search commands. CodeMirror has keys bound to
  2085. these by default, but will not do anything with them unless an
  2086. implementation is provided. Depends
  2087. on <code>searchcursor.js</code>, and will make use
  2088. of <a href="#addon_dialog"><code>openDialog</code></a> when
  2089. available to make prompting for search queries less ugly.</dd>
  2090. <dt id="addon_jump-to-line"><a href="../addon/search/jump-to-line.js"><code>search/jump-to-line.js</code></a></dt>
  2091. <dd>Implements a <code>jumpToLine</code> command and binding <code>Alt-G</code> to it.
  2092. Accepts <code>linenumber</code>, <code>+/-linenumber</code>, <code>line:char</code>,
  2093. <code>scroll%</code> and <code>:linenumber</code> formats.
  2094. This will make use of <a href="#addon_dialog"><code>openDialog</code></a>
  2095. when available to make prompting for line number neater.</dd>
  2096. <dt id="addon_matchesonscrollbar"><a href="../addon/search/matchesonscrollbar.js"><code>search/matchesonscrollbar.js</code></a></dt>
  2097. <dd>Adds a <code>showMatchesOnScrollbar</code> method to editor
  2098. instances, which should be given a query (string or regular
  2099. expression), optionally a case-fold flag (only applicable for
  2100. strings), and optionally a class name (defaults
  2101. to <code>CodeMirror-search-match</code>) as arguments. When
  2102. called, matches of the given query will be displayed on the
  2103. editor's vertical scrollbar. The method returns an object with
  2104. a <code>clear</code> method that can be called to remove the
  2105. matches. Depends on
  2106. the <a href="#addon_annotatescrollbar"><code>annotatescrollbar</code></a>
  2107. addon, and
  2108. the <a href="../addon/search/matchesonscrollbar.css"><code>matchesonscrollbar.css</code></a>
  2109. file provides a default (transparent yellowish) definition of
  2110. the CSS class applied to the matches. Note that the matches are
  2111. only perfectly aligned if your scrollbar does not have buttons
  2112. at the top and bottom. You can use
  2113. the <a href="#addon_simplescrollbars"><code>simplescrollbar</code></a>
  2114. addon to make sure of this. If this addon is loaded,
  2115. the <a href="#addon_search"><code>search</code></a> addon will
  2116. automatically use it.</dd>
  2117. <dt id="addon_matchbrackets"><a href="../addon/edit/matchbrackets.js"><code>edit/matchbrackets.js</code></a></dt>
  2118. <dd>Defines an option <code>matchBrackets</code> which, when set
  2119. to true or an options object, causes matching brackets to be
  2120. highlighted whenever the cursor is next to them. It also adds a
  2121. method <code>matchBrackets</code> that forces this to happen
  2122. once, and a method <code>findMatchingBracket</code> that can be
  2123. used to run the bracket-finding algorithm that this uses
  2124. internally. It takes a start position and an optional config
  2125. object. By default, it will find the match to a matchable
  2126. character either before or after the cursor (preferring the one
  2127. before), but you can control its behavior with these options:
  2128. <dl>
  2129. <dt><strong><code>afterCursor</code></strong></dt>
  2130. <dd>Only use the character after the start position, never the one before it.</dd>
  2131. <dt><strong><code>strict</code></strong></dt>
  2132. <dd>Causes only matches where both brackets are at the same side of the start position to be considered.</dd>
  2133. <dt><strong><code>maxScanLines</code></strong></dt>
  2134. <dd>Stop after scanning this amount of lines without a successful match. Defaults to 1000.</dd>
  2135. <dt><strong><code>maxScanLineLength</code></strong></dt>
  2136. <dd>Ignore lines longer than this. Defaults to 10000.</dd>
  2137. <dt><strong><code>maxHighlightLineLength</code></strong></dt>
  2138. <dd>Don't highlight a bracket in a line longer than this. Defaults to 1000.</dd>
  2139. </dl></dd>
  2140. <dt id="addon_closebrackets"><a href="../addon/edit/closebrackets.js"><code>edit/closebrackets.js</code></a></dt>
  2141. <dd>Defines an option <code>autoCloseBrackets</code> that will
  2142. auto-close brackets and quotes when typed. By default, it'll
  2143. auto-close <code>()[]{}''""</code>, but you can pass it a string
  2144. similar to that (containing pairs of matching characters), or an
  2145. object with <code>pairs</code> and
  2146. optionally <code>explode</code> properties to customize
  2147. it. <code>explode</code> should be a similar string that gives
  2148. the pairs of characters that, when enter is pressed between
  2149. them, should have the second character also moved to its own
  2150. line. By default, if the active mode has
  2151. a <code>closeBrackets</code> property, that overrides the
  2152. configuration given in the option. But you can add
  2153. an <code>override</code> property with a truthy value to
  2154. override mode-specific
  2155. configuration. <a href="../demo/closebrackets.html">Demo
  2156. here</a>.</dd>
  2157. <dt id="addon_matchtags"><a href="../addon/edit/matchtags.js"><code>edit/matchtags.js</code></a></dt>
  2158. <dd>Defines an option <code>matchTags</code> that, when enabled,
  2159. will cause the tags around the cursor to be highlighted (using
  2160. the <code>CodeMirror-matchingtag</code> class). Also
  2161. defines
  2162. a <a href="#commands">command</a> <code>toMatchingTag</code>,
  2163. which you can bind a key to in order to jump to the tag matching
  2164. the one under the cursor. Depends on
  2165. the <code>addon/fold/xml-fold.js</code>
  2166. addon. <a href="../demo/matchtags.html">Demo here.</a></dd>
  2167. <dt id="addon_trailingspace"><a href="../addon/edit/trailingspace.js"><code>edit/trailingspace.js</code></a></dt>
  2168. <dd>Adds an option <code>showTrailingSpace</code> which, when
  2169. enabled, adds the CSS class <code>cm-trailingspace</code> to
  2170. stretches of whitespace at the end of lines.
  2171. The <a href="../demo/trailingspace.html">demo</a> has a nice
  2172. squiggly underline style for this class.</dd>
  2173. <dt id="addon_closetag"><a href="../addon/edit/closetag.js"><code>edit/closetag.js</code></a></dt>
  2174. <dd>Defines an <code>autoCloseTags</code> option that will
  2175. auto-close XML tags when '<code>&gt;</code>' or '<code>/</code>'
  2176. is typed, and
  2177. a <code>closeTag</code> <a href="#commands">command</a> that
  2178. closes the nearest open tag. Depends on
  2179. the <code>fold/xml-fold.js</code> addon. See
  2180. the <a href="../demo/closetag.html">demo</a>.</dd>
  2181. <dt id="addon_continuelist"><a href="../addon/edit/continuelist.js"><code>edit/continuelist.js</code></a></dt>
  2182. <dd>Markdown specific. Defines
  2183. a <code>"newlineAndIndentContinueMarkdownList"</code> <a href="#commands">command</a>
  2184. that can be bound to <code>enter</code> to automatically
  2185. insert the leading characters for continuing a list. See
  2186. the <a href="../mode/markdown/index.html">Markdown mode
  2187. demo</a>.</dd>
  2188. <dt id="addon_comment"><a href="../addon/comment/comment.js"><code>comment/comment.js</code></a></dt>
  2189. <dd>Addon for commenting and uncommenting code. Adds four
  2190. methods to CodeMirror instances:
  2191. <dl>
  2192. <dt id="toggleComment"><code><strong>toggleComment</strong>(?options: object)</code></dt>
  2193. <dd>Tries to uncomment the current selection, and if that
  2194. fails, line-comments it.</dd>
  2195. <dt id="lineComment"><code><strong>lineComment</strong>(from: {line, ch}, to: {line, ch}, ?options: object)</code></dt>
  2196. <dd>Set the lines in the given range to be line comments. Will
  2197. fall back to <code>blockComment</code> when no line comment
  2198. style is defined for the mode.</dd>
  2199. <dt id="blockComment"><code><strong>blockComment</strong>(from: {line, ch}, to: {line, ch}, ?options: object)</code></dt>
  2200. <dd>Wrap the code in the given range in a block comment. Will
  2201. fall back to <code>lineComment</code> when no block comment
  2202. style is defined for the mode.</dd>
  2203. <dt id="uncomment"><code><strong>uncomment</strong>(from: {line, ch}, to: {line, ch}, ?options: object) → boolean</code></dt>
  2204. <dd>Try to uncomment the given range.
  2205. Returns <code>true</code> if a comment range was found and
  2206. removed, <code>false</code> otherwise.</dd>
  2207. </dl>
  2208. The <code>options</code> object accepted by these methods may
  2209. have the following properties:
  2210. <dl>
  2211. <dt><code>blockCommentStart, blockCommentEnd, blockCommentLead, lineComment: string</code></dt>
  2212. <dd>Override the <a href="#mode_comment">comment string
  2213. properties</a> of the mode with custom comment strings.</dd>
  2214. <dt><code><strong>padding</strong>: string</code></dt>
  2215. <dd>A string that will be inserted after opening and leading
  2216. markers, and before closing comment markers. Defaults to a
  2217. single space.</dd>
  2218. <dt><code><strong>commentBlankLines</strong>: boolean</code></dt>
  2219. <dd>Whether, when adding line comments, to also comment lines
  2220. that contain only whitespace.</dd>
  2221. <dt><code><strong>indent</strong>: boolean</code></dt>
  2222. <dd>When adding line comments and this is turned on, it will
  2223. align the comment block to the current indentation of the
  2224. first line of the block.</dd>
  2225. <dt><code><strong>fullLines</strong>: boolean</code></dt>
  2226. <dd>When block commenting, this controls whether the whole
  2227. lines are indented, or only the precise range that is given.
  2228. Defaults to <code>true</code>.</dd>
  2229. </dl>
  2230. The addon also defines
  2231. a <code>toggleComment</code> <a href="#commands">command</a>,
  2232. which is a shorthand command for calling
  2233. <code>toggleComment</code> with no options.</dd>
  2234. <dt id="addon_foldcode"><a href="../addon/fold/foldcode.js"><code>fold/foldcode.js</code></a></dt>
  2235. <dd>Helps with code folding. Adds a <code>foldCode</code> method
  2236. to editor instances, which will try to do a code fold starting
  2237. at the given line, or unfold the fold that is already present.
  2238. The method takes as first argument the position that should be
  2239. folded (may be a line number or
  2240. a <a href="#Pos"><code>Pos</code></a>), and as second optional
  2241. argument either a range-finder function, or an options object,
  2242. supporting the following properties:
  2243. <dl>
  2244. <dt><code><strong>rangeFinder</strong>: fn(CodeMirror, Pos)</code></dt>
  2245. <dd id="helper_fold_auto">The function that is used to find
  2246. foldable ranges. If this is not directly passed, it will
  2247. default to <code>CodeMirror.fold.auto</code>, which
  2248. uses <a href="#getHelpers"><code>getHelpers</code></a> with
  2249. a <code>"fold"</code> type to find folding functions
  2250. appropriate for the local mode. There are files in
  2251. the <a href="../addon/fold/"><code>addon/fold/</code></a>
  2252. directory providing <code>CodeMirror.fold.brace</code>, which
  2253. finds blocks in brace languages (JavaScript, C, Java,
  2254. etc), <code>CodeMirror.fold.indent</code>, for languages where
  2255. indentation determines block structure (Python, Haskell),
  2256. and <code>CodeMirror.fold.xml</code>, for XML-style languages,
  2257. and <code>CodeMirror.fold.comment</code>, for folding comment
  2258. blocks.</dd>
  2259. <dt><code><strong>widget</strong>: string | Element | fn(from: Pos, to: Pos) → string|Element</code></dt>
  2260. <dd>The widget to show for folded ranges. Can be either a
  2261. string, in which case it'll become a span with
  2262. class <code>CodeMirror-foldmarker</code>, or a DOM node.
  2263. To dynamically generate the widget, this can be a function
  2264. that returns a string or DOM node, which will then render
  2265. as described. The function will be invoked with parameters
  2266. identifying the range to be folded.</dd>
  2267. <dt><code><strong>scanUp</strong>: boolean</code></dt>
  2268. <dd>When true (default is false), the addon will try to find
  2269. foldable ranges on the lines above the current one if there
  2270. isn't an eligible one on the given line.</dd>
  2271. <dt><code><strong>minFoldSize</strong>: integer</code></dt>
  2272. <dd>The minimum amount of lines that a fold should span to be
  2273. accepted. Defaults to 0, which also allows single-line
  2274. folds.</dd>
  2275. </dl>
  2276. See <a href="../demo/folding.html">the demo</a> for an
  2277. example.</dd>
  2278. <dt id="addon_foldgutter"><a href="../addon/fold/foldgutter.js"><code>fold/foldgutter.js</code></a></dt>
  2279. <dd>Provides an option <code>foldGutter</code>, which can be
  2280. used to create a gutter with markers indicating the blocks that
  2281. can be folded. Create a gutter using
  2282. the <a href="#option_gutters"><code>gutters</code></a> option,
  2283. giving it the class <code>CodeMirror-foldgutter</code> or
  2284. something else if you configure the addon to use a different
  2285. class, and this addon will show markers next to folded and
  2286. foldable blocks, and handle clicks in this gutter. Note that
  2287. CSS styles should be applied to make the gutter, and the fold
  2288. markers within it, visible. A default set of CSS styles are
  2289. available in:
  2290. <a href="../addon/fold/foldgutter.css">
  2291. <code>addon/fold/foldgutter.css</code>
  2292. </a>.
  2293. The option
  2294. can be either set to <code>true</code>, or an object containing
  2295. the following optional option fields:
  2296. <dl>
  2297. <dt><code><strong>gutter</strong>: string</code></dt>
  2298. <dd>The CSS class of the gutter. Defaults
  2299. to <code>"CodeMirror-foldgutter"</code>. You will have to
  2300. style this yourself to give it a width (and possibly a
  2301. background). See the default gutter style rules above.</dd>
  2302. <dt><code><strong>indicatorOpen</strong>: string | Element</code></dt>
  2303. <dd>A CSS class or DOM element to be used as the marker for
  2304. open, foldable blocks. Defaults
  2305. to <code>"CodeMirror-foldgutter-open"</code>.</dd>
  2306. <dt><code><strong>indicatorFolded</strong>: string | Element</code></dt>
  2307. <dd>A CSS class or DOM element to be used as the marker for
  2308. folded blocks. Defaults to <code>"CodeMirror-foldgutter-folded"</code>.</dd>
  2309. <dt><code><strong>rangeFinder</strong>: fn(CodeMirror, Pos)</code></dt>
  2310. <dd>The range-finder function to use when determining whether
  2311. something can be folded. When not
  2312. given, <a href="#helper_fold_auto"><code>CodeMirror.fold.auto</code></a>
  2313. will be used as default.</dd>
  2314. </dl>
  2315. The <code>foldOptions</code> editor option can be set to an
  2316. object to provide an editor-wide default configuration.
  2317. Demo <a href="../demo/folding.html">here</a>.</dd>
  2318. <dt id="addon_runmode"><a href="../addon/runmode/runmode.js"><code>runmode/runmode.js</code></a></dt>
  2319. <dd>Can be used to run a CodeMirror mode over text without
  2320. actually opening an editor instance.
  2321. See <a href="../demo/runmode.html">the demo</a> for an example.
  2322. There are alternate versions of the file available for
  2323. running <a href="../addon/runmode/runmode-standalone.js">stand-alone</a>
  2324. (without including all of CodeMirror) and
  2325. for <a href="../addon/runmode/runmode.node.js">running under
  2326. node.js</a> (see <code>bin/source-highlight</code> for an example of using the latter).</dd>
  2327. <dt id="addon_colorize"><a href="../addon/runmode/colorize.js"><code>runmode/colorize.js</code></a></dt>
  2328. <dd>Provides a convenient way to syntax-highlight code snippets
  2329. in a webpage. Depends on
  2330. the <a href="#addon_runmode"><code>runmode</code></a> addon (or
  2331. its standalone variant). Provides
  2332. a <code>CodeMirror.colorize</code> function that can be called
  2333. with an array (or other array-ish collection) of DOM nodes that
  2334. represent the code snippets. By default, it'll get
  2335. all <code>pre</code> tags. Will read the <code>data-lang</code>
  2336. attribute of these nodes to figure out their language, and
  2337. syntax-color their content using the relevant CodeMirror mode
  2338. (you'll have to load the scripts for the relevant modes
  2339. yourself). A second argument may be provided to give a default
  2340. mode, used when no language attribute is found for a node. Used
  2341. in this manual to highlight example code.</dd>
  2342. <dt id="addon_overlay"><a href="../addon/mode/overlay.js"><code>mode/overlay.js</code></a></dt>
  2343. <dd>Mode combinator that can be used to extend a mode with an
  2344. 'overlay' — a secondary mode is run over the stream, along with
  2345. the base mode, and can color specific pieces of text without
  2346. interfering with the base mode.
  2347. Defines <code>CodeMirror.overlayMode</code>, which is used to
  2348. create such a mode. See <a href="../demo/mustache.html">this
  2349. demo</a> for a detailed example.</dd>
  2350. <dt id="addon_multiplex"><a href="../addon/mode/multiplex.js"><code>mode/multiplex.js</code></a></dt>
  2351. <dd>Mode combinator that can be used to easily 'multiplex'
  2352. between several modes.
  2353. Defines <code>CodeMirror.multiplexingMode</code> which, when
  2354. given as first argument a mode object, and as other arguments
  2355. any number of <code>{open, close, mode [, delimStyle, innerStyle, parseDelimiters]}</code>
  2356. objects, will return a mode object that starts parsing using the
  2357. mode passed as first argument, but will switch to another mode
  2358. as soon as it encounters a string that occurs in one of
  2359. the <code>open</code> fields of the passed objects. When in a
  2360. sub-mode, it will go back to the top mode again when
  2361. the <code>close</code> string is encountered.
  2362. Pass <code>"\n"</code> for <code>open</code> or <code>close</code>
  2363. if you want to switch on a blank line.
  2364. <ul><li>When <code>delimStyle</code> is specified, it will be the token
  2365. style returned for the delimiter tokens (as well as
  2366. <code>[delimStyle]-open</code> on the opening token and
  2367. <code>[delimStyle]-close</code> on the closing token).</li>
  2368. <li>When <code>innerStyle</code> is specified, it will be the token
  2369. style added for each inner mode token.</li>
  2370. <li>When <code>parseDelimiters</code> is true, the content of
  2371. the delimiters will also be passed to the inner mode.
  2372. (And <code>delimStyle</code> is ignored.)</li></ul> The outer
  2373. mode will not see the content between the delimiters.
  2374. See <a href="../demo/multiplex.html">this demo</a> for an
  2375. example.</dd>
  2376. <dt id="addon_show-hint"><a href="../addon/hint/show-hint.js"><code>hint/show-hint.js</code></a></dt>
  2377. <dd>Provides a framework for showing autocompletion hints.
  2378. Defines <code>editor.showHint</code>, which takes an optional
  2379. options object, and pops up a widget that allows the user to
  2380. select a completion. Finding hints is done with a hinting
  2381. functions (the <code>hint</code> option), which is a function
  2382. that take an editor instance and options object, and return
  2383. a <code>{list, from, to}</code> object, where <code>list</code>
  2384. is an array of strings or objects (the completions),
  2385. and <code>from</code> and <code>to</code> give the start and end
  2386. of the token that is being completed as <code>{line, ch}</code>
  2387. objects. An optional <code>selectedHint</code> property (an
  2388. integer) can be added to the completion object to control the
  2389. initially selected hint.</dd>
  2390. <dd>If no hinting function is given, the addon will
  2391. use <code>CodeMirror.hint.auto</code>, which
  2392. calls <a href="#getHelpers"><code>getHelpers</code></a> with
  2393. the <code>"hint"</code> type to find applicable hinting
  2394. functions, and tries them one by one. If that fails, it looks
  2395. for a <code>"hintWords"</code> helper to fetch a list of
  2396. completable words for the mode, and
  2397. uses <code>CodeMirror.hint.fromList</code> to complete from
  2398. those.</dd>
  2399. <dd>When completions aren't simple strings, they should be
  2400. objects with the following properties:
  2401. <dl>
  2402. <dt><code><strong>text</strong>: string</code></dt>
  2403. <dd>The completion text. This is the only required
  2404. property.</dd>
  2405. <dt><code><strong>displayText</strong>: string</code></dt>
  2406. <dd>The text that should be displayed in the menu.</dd>
  2407. <dt><code><strong>className</strong>: string</code></dt>
  2408. <dd>A CSS class name to apply to the completion's line in the
  2409. menu.</dd>
  2410. <dt><code><strong>render</strong>: fn(Element, self, data)</code></dt>
  2411. <dd>A method used to create the DOM structure for showing the
  2412. completion by appending it to its first argument.</dd>
  2413. <dt><code><strong>hint</strong>: fn(CodeMirror, self, data)</code></dt>
  2414. <dd>A method used to actually apply the completion, instead of
  2415. the default behavior.</dd>
  2416. <dt><code><strong>from</strong>: {line, ch}</code></dt>
  2417. <dd>Optional <code>from</code> position that will be used by <code>pick()</code> instead
  2418. of the global one passed with the full list of completions.</dd>
  2419. <dt><code><strong>to</strong>: {line, ch}</code></dt>
  2420. <dd>Optional <code>to</code> position that will be used by <code>pick()</code> instead
  2421. of the global one passed with the full list of completions.</dd>
  2422. </dl></dd>
  2423. <dd>The plugin understands the following options, which may be
  2424. either passed directly in the argument to <code>showHint</code>,
  2425. or provided by setting an <code>hintOptions</code> editor
  2426. option to an object (the former takes precedence). The options
  2427. object will also be passed along to the hinting function, which
  2428. may understand additional options.
  2429. <dl>
  2430. <dt><code><strong>hint</strong>: function</code></dt>
  2431. <dd>A hinting function, as specified above. It is possible to
  2432. set the <code>async</code> property on a hinting function to
  2433. true, in which case it will be called with
  2434. arguments <code>(cm, callback, ?options)</code>, and the
  2435. completion interface will only be popped up when the hinting
  2436. function calls the callback, passing it the object holding the
  2437. completions.
  2438. The hinting function can also return a promise, and the completion
  2439. interface will only be popped when the promise resolves.
  2440. By default, hinting only works when there is no
  2441. selection. You can give a hinting function
  2442. a <code>supportsSelection</code> property with a truthy value
  2443. to indicate that it supports selections.</dd>
  2444. <dt><code><strong>completeSingle</strong>: boolean</code></dt>
  2445. <dd>Determines whether, when only a single completion is
  2446. available, it is completed without showing the dialog.
  2447. Defaults to true.</dd>
  2448. <dt><code><strong>alignWithWord</strong>: boolean</code></dt>
  2449. <dd>Whether the pop-up should be horizontally aligned with the
  2450. start of the word (true, default), or with the cursor (false).</dd>
  2451. <dt><code><strong>closeOnUnfocus</strong>: boolean</code></dt>
  2452. <dd>When enabled (which is the default), the pop-up will close
  2453. when the editor is unfocused.</dd>
  2454. <dt><code><strong>customKeys</strong>: keymap</code></dt>
  2455. <dd>Allows you to provide a custom key map of keys to be active
  2456. when the pop-up is active. The handlers will be called with an
  2457. extra argument, a handle to the completion menu, which
  2458. has <code>moveFocus(n)</code>, <code>setFocus(n)</code>, <code>pick()</code>,
  2459. and <code>close()</code> methods (see the source for details),
  2460. that can be used to change the focused element, pick the
  2461. current element or close the menu. Additionally <code>menuSize()</code>
  2462. can give you access to the size of the current dropdown menu,
  2463. <code>length</code> give you the number of available completions, and
  2464. <code>data</code> give you full access to the completion returned by the
  2465. hinting function.</dd>
  2466. <dt><code><strong>extraKeys</strong>: keymap</code></dt>
  2467. <dd>Like <code>customKeys</code> above, but the bindings will
  2468. be added to the set of default bindings, instead of replacing
  2469. them.</dd>
  2470. </dl>
  2471. The following events will be fired on the completions object
  2472. during completion:
  2473. <dl>
  2474. <dt><code><strong>"shown"</strong> ()</code></dt>
  2475. <dd>Fired when the pop-up is shown.</dd>
  2476. <dt><code><strong>"select"</strong> (completion, Element)</code></dt>
  2477. <dd>Fired when a completion is selected. Passed the completion
  2478. value (string or object) and the DOM node that represents it
  2479. in the menu.</dd>
  2480. <dt><code><strong>"pick"</strong> (completion)</code></dt>
  2481. <dd>Fired when a completion is picked. Passed the completion value
  2482. (string or object).</dd>
  2483. <dt><code><strong>"close"</strong> ()</code></dt>
  2484. <dd>Fired when the completion is finished.</dd>
  2485. </dl>
  2486. This addon depends on styles
  2487. from <code>addon/hint/show-hint.css</code>. Check
  2488. out <a href="../demo/complete.html">the demo</a> for an
  2489. example.</dd>
  2490. <dt id="addon_javascript-hint"><a href="../addon/hint/javascript-hint.js"><code>hint/javascript-hint.js</code></a></dt>
  2491. <dd>Defines a simple hinting function for JavaScript
  2492. (<code>CodeMirror.hint.javascript</code>) and CoffeeScript
  2493. (<code>CodeMirror.hint.coffeescript</code>) code. This will
  2494. simply use the JavaScript environment that the editor runs in as
  2495. a source of information about objects and their properties.</dd>
  2496. <dt id="addon_xml-hint"><a href="../addon/hint/xml-hint.js"><code>hint/xml-hint.js</code></a></dt>
  2497. <dd>Defines <code>CodeMirror.hint.xml</code>, which produces
  2498. hints for XML tagnames, attribute names, and attribute values,
  2499. guided by a <code>schemaInfo</code> option (a property of the
  2500. second argument passed to the hinting function, or the third
  2501. argument passed to <code>CodeMirror.showHint</code>).<br>The
  2502. schema info should be an object mapping tag names to information
  2503. about these tags, with optionally a <code>"!top"</code> property
  2504. containing a list of the names of valid top-level tags. The
  2505. values of the properties should be objects with optional
  2506. properties <code>children</code> (an array of valid child
  2507. element names, omit to simply allow all tags to appear)
  2508. and <code>attrs</code> (an object mapping attribute names
  2509. to <code>null</code> for free-form attributes, and an array of
  2510. valid values for restricted
  2511. attributes).<br>The hint options accept an additional property:
  2512. <dl>
  2513. <dt><code><strong>matchInMiddle</strong>: boolean</code></dt>
  2514. <dd>Determines whether typed characters are matched anywhere in
  2515. completions, not just at the beginning. Defaults to false.</dd>
  2516. </dl>
  2517. <a href="../demo/xmlcomplete.html">Demo here</a>.</dd>
  2518. <dt id="addon_html-hint"><a href="../addon/hint/html-hint.js"><code>hint/html-hint.js</code></a></dt>
  2519. <dd>Provides schema info to
  2520. the <a href="#addon_xml-hint">xml-hint</a> addon for HTML
  2521. documents. Defines a schema
  2522. object <code>CodeMirror.htmlSchema</code> that you can pass to
  2523. as a <code>schemaInfo</code> option, and
  2524. a <code>CodeMirror.hint.html</code> hinting function that
  2525. automatically calls <code>CodeMirror.hint.xml</code> with this
  2526. schema data. See
  2527. the <a href="../demo/html5complete.html">demo</a>.</dd>
  2528. <dt id="addon_css-hint"><a href="../addon/hint/css-hint.js"><code>hint/css-hint.js</code></a></dt>
  2529. <dd>A hinting function for CSS, SCSS, or LESS code.
  2530. Defines <code>CodeMirror.hint.css</code>.</dd>
  2531. <dt id="addon_anyword-hint"><a href="../addon/hint/anyword-hint.js"><code>hint/anyword-hint.js</code></a></dt>
  2532. <dd>A very simple hinting function
  2533. (<code>CodeMirror.hint.anyword</code>) that simply looks for
  2534. words in the nearby code and completes to those. Takes two
  2535. optional options, <code>word</code>, a regular expression that
  2536. matches words (sequences of one or more character),
  2537. and <code>range</code>, which defines how many lines the addon
  2538. should scan when completing (defaults to 500).</dd>
  2539. <dt id="addon_sql-hint"><a href="../addon/hint/sql-hint.js"><code>hint/sql-hint.js</code></a></dt>
  2540. <dd>A simple SQL hinter. Defines <code>CodeMirror.hint.sql</code>.
  2541. Takes two optional options, <code>tables</code>, a object with
  2542. table names as keys and array of respective column names as values,
  2543. and <code>defaultTable</code>, a string corresponding to a
  2544. table name in <code>tables</code> for autocompletion.</dd>
  2545. <dt id="addon_match-highlighter"><a href="../addon/search/match-highlighter.js"><code>search/match-highlighter.js</code></a></dt>
  2546. <dd>Adds a <code>highlightSelectionMatches</code> option that
  2547. can be enabled to highlight all instances of a currently
  2548. selected word. Can be set either to true or to an object
  2549. containing the following options: <code>minChars</code>, for the
  2550. minimum amount of selected characters that triggers a highlight
  2551. (default 2), <code>style</code>, for the style to be used to
  2552. highlight the matches (default <code>"matchhighlight"</code>,
  2553. which will correspond to CSS
  2554. class <code>cm-matchhighlight</code>), <code>trim</code>, which
  2555. controls whether whitespace is trimmed from the selection,
  2556. and <code>showToken</code> which can be set to <code>true</code>
  2557. or to a regexp matching the characters that make up a word. When
  2558. enabled, it causes the current word to be highlighted when
  2559. nothing is selected (defaults to off).
  2560. Demo <a href="../demo/matchhighlighter.html">here</a>.</dd>
  2561. <dt id="addon_lint"><a href="../addon/lint/lint.js"><code>lint/lint.js</code></a></dt>
  2562. <dd>Defines an interface component for showing linting warnings,
  2563. with pluggable warning sources
  2564. (see <a href="../addon/lint/html-lint.js"><code>html-lint.js</code></a>,
  2565. <a href="../addon/lint/json-lint.js"><code>json-lint.js</code></a>,
  2566. <a href="../addon/lint/javascript-lint.js"><code>javascript-lint.js</code></a>,
  2567. <a href="../addon/lint/coffeescript-lint.js"><code>coffeescript-lint.js</code></a>,
  2568. and <a href="../addon/lint/css-lint.js"><code>css-lint.js</code></a>
  2569. in the same directory). Defines a <code>lint</code> option that
  2570. can be set to an annotation source (for
  2571. example <code>CodeMirror.lint.javascript</code>), to an options
  2572. object (in which case the <code>getAnnotations</code> field is
  2573. used as annotation source), or simply to <code>true</code>. When
  2574. no annotation source is
  2575. specified, <a href="#getHelper"><code>getHelper</code></a> with
  2576. type <code>"lint"</code> is used to find an annotation function.
  2577. An annotation source function should, when given a document
  2578. string, an options object, and an editor instance, return an
  2579. array of <code>{message, severity, from, to}</code> objects
  2580. representing problems. When the function has
  2581. an <code>async</code> property with a truthy value, it will be
  2582. called with an additional second argument, which is a callback
  2583. to pass the array to.
  2584. The linting function can also return a promise, in that case the linter
  2585. will only be executed when the promise resolves.
  2586. By default, the linter will run (debounced) whenever the document is changed.
  2587. You can pass a <code>lintOnChange: false</code> option to disable that.
  2588. You can pass a <code>selfContain: true</code> option to render the tooltip inside the editor instance.
  2589. Depends on <code>addon/lint/lint.css</code>. A demo can be
  2590. found <a href="../demo/lint.html">here</a>.</dd>
  2591. <dt id="addon_mark-selection"><a href="../addon/selection/mark-selection.js"><code>selection/mark-selection.js</code></a></dt>
  2592. <dd>Causes the selected text to be marked with the CSS class
  2593. <code>CodeMirror-selectedtext</code> when the <code>styleSelectedText</code> option
  2594. is enabled. Useful to change the colour of the selection (in addition to the background),
  2595. like in <a href="../demo/markselection.html">this demo</a>.</dd>
  2596. <dt id="addon_active-line"><a href="../addon/selection/active-line.js"><code>selection/active-line.js</code></a></dt>
  2597. <dd>Defines a <code>styleActiveLine</code> option that, when
  2598. enabled, gives the wrapper of the line that contains the cursor
  2599. the class <code>CodeMirror-activeline</code>, adds a background
  2600. with the class <code>CodeMirror-activeline-background</code>,
  2601. and adds the class <code>CodeMirror-activeline-gutter</code> to
  2602. the line's gutter space is enabled. The option's value may be a
  2603. boolean or an object specifying the following options:
  2604. <dl>
  2605. <dt><code><strong>nonEmpty</strong>: bool</code></dt>
  2606. <dd>Controls whether single-line selections, or just cursor
  2607. selections, are styled. Defaults to false (only cursor
  2608. selections).</dd>
  2609. </dl>
  2610. See the <a href="../demo/activeline.html">demo</a>.</dd>
  2611. <dt id="addon_selection-pointer"><a href="../addon/selection/selection-pointer.js"><code>selection/selection-pointer.js</code></a></dt>
  2612. <dd>Defines a <code>selectionPointer</code> option which you can
  2613. use to control the mouse cursor appearance when hovering over
  2614. the selection. It can be set to a string,
  2615. like <code>"pointer"</code>, or to true, in which case
  2616. the <code>"default"</code> (arrow) cursor will be used. You can
  2617. see a demo <a href="../mode/htmlmixed/index.html">here</a>.</dd>
  2618. <dt id="addon_loadmode"><a href="../addon/mode/loadmode.js"><code>mode/loadmode.js</code></a></dt>
  2619. <dd>Defines a <code>CodeMirror.requireMode(modename,
  2620. callback)</code> function that will try to load a given mode and
  2621. call the callback when it succeeded. You'll have to
  2622. set <code>CodeMirror.modeURL</code> to a string that mode paths
  2623. can be constructed from, for
  2624. example <code>"mode/%N/%N.js"</code>—the <code>%N</code>'s will
  2625. be replaced with the mode name. Also
  2626. defines <code>CodeMirror.autoLoadMode(instance, mode)</code>,
  2627. which will ensure the given mode is loaded and cause the given
  2628. editor instance to refresh its mode when the loading
  2629. succeeded. See the <a href="../demo/loadmode.html">demo</a>.</dd>
  2630. <dt id="addon_meta"><a href="../mode/meta.js"><code>mode/meta.js</code></a></dt>
  2631. <dd>Provides meta-information about all the modes in the
  2632. distribution in a single file.
  2633. Defines <code>CodeMirror.modeInfo</code>, an array of objects
  2634. with <code>{name, mime, mode}</code> properties,
  2635. where <code>name</code> is the human-readable
  2636. name, <code>mime</code> the MIME type, and <code>mode</code> the
  2637. name of the mode file that defines this MIME. There are optional
  2638. properties <code>mimes</code>, which holds an array of MIME
  2639. types for modes with multiple MIMEs associated,
  2640. and <code>ext</code>, which holds an array of file extensions
  2641. associated with this mode. Four convenience
  2642. functions, <code>CodeMirror.findModeByMIME</code>,
  2643. <code>CodeMirror.findModeByExtension</code>,
  2644. <code>CodeMirror.findModeByFileName</code>
  2645. and <code>CodeMirror.findModeByName</code> are provided, which
  2646. return such an object given a MIME, extension, file name or mode name
  2647. string. Note that, for historical reasons, this file resides in the
  2648. top-level <code>mode</code> directory, not
  2649. under <code>addon</code>. <a href="../demo/loadmode.html">Demo</a>.</dd>
  2650. <dt id="addon_continuecomment"><a href="../addon/comment/continuecomment.js"><code>comment/continuecomment.js</code></a></dt>
  2651. <dd>Adds a <code>continueComments</code> option, which sets whether the
  2652. editor will make the next line continue a comment when you press Enter
  2653. inside a comment block. Can be set to a boolean to enable/disable this
  2654. functionality. Set to a string, it will continue comments using a custom
  2655. shortcut. Set to an object, it will use the <code>key</code> property for
  2656. a custom shortcut and the boolean <code>continueLineComment</code>
  2657. property to determine whether single-line comments should be continued
  2658. (defaulting to <code>true</code>).</dd>
  2659. <dt id="addon_placeholder"><a href="../addon/display/placeholder.js"><code>display/placeholder.js</code></a></dt>
  2660. <dd>Adds a <code>placeholder</code> option that can be used to
  2661. make content appear in the editor when it is empty and not
  2662. focused. It can hold either a string or a DOM node. Also gives
  2663. the editor a <code>CodeMirror-empty</code> CSS class whenever it
  2664. doesn't contain any text.
  2665. See <a href="../demo/placeholder.html">the demo</a>.</dd>
  2666. <dt id="addon_fullscreen"><a href="../addon/display/fullscreen.js"><code>display/fullscreen.js</code></a></dt>
  2667. <dd>Defines an option <code>fullScreen</code> that, when set
  2668. to <code>true</code>, will make the editor full-screen (as in,
  2669. taking up the whole browser window). Depends
  2670. on <a href="../addon/display/fullscreen.css"><code>fullscreen.css</code></a>. <a href="../demo/fullscreen.html">Demo
  2671. here</a>.</dd>
  2672. <dt id="addon_autorefresh"><a href="../addon/display/autorefresh.js"><code>display/autorefresh.js</code></a></dt>
  2673. <dd>This addon can be useful when initializing an editor in a
  2674. hidden DOM node, in cases where it is difficult to
  2675. call <a href="#refresh"><code>refresh</code></a> when the editor
  2676. becomes visible. It defines an option <code>autoRefresh</code>
  2677. which you can set to true to ensure that, if the editor wasn't
  2678. visible on initialization, it will be refreshed the first time
  2679. it becomes visible. This is done by polling every 250
  2680. milliseconds (you can pass a value like <code>{delay:
  2681. 500}</code> as the option value to configure this). Note that
  2682. this addon will only refresh the editor <em>once</em> when it
  2683. first becomes visible, and won't take care of further restyling
  2684. and resizing.</dd>
  2685. <dt id="addon_simplescrollbars"><a href="../addon/scroll/simplescrollbars.js"><code>scroll/simplescrollbars.js</code></a></dt>
  2686. <dd>Defines two additional scrollbar
  2687. models, <code>"simple"</code> and <code>"overlay"</code>
  2688. (see <a href="../demo/simplescrollbars.html">demo</a>) that can
  2689. be selected with
  2690. the <a href="#option_scrollbarStyle"><code>scrollbarStyle</code></a>
  2691. option. Depends
  2692. on <a href="../addon/scroll/simplescrollbars.css"><code>simplescrollbars.css</code></a>,
  2693. which can be further overridden to style your own
  2694. scrollbars.</dd>
  2695. <dt id="addon_annotatescrollbar"><a href="../addon/scroll/annotatescrollbar.js"><code>scroll/annotatescrollbar.js</code></a></dt>
  2696. <dd>Provides functionality for showing markers on the scrollbar
  2697. to call out certain parts of the document. Adds a
  2698. method <code>annotateScrollbar</code> to editor instances that
  2699. can be called, with a CSS class name as argument, to create a
  2700. set of annotations. The method returns an object
  2701. whose <code>update</code> method can be called with a sorted array
  2702. of <code>{from: Pos, to: Pos}</code> objects marking the ranges
  2703. to be highlighted. To detach the annotations, call the
  2704. object's <code>clear</code> method.</dd>
  2705. <dt id="addon_rulers"><a href="../addon/display/rulers.js"><code>display/rulers.js</code></a></dt>
  2706. <dd>Adds a <code>rulers</code> option, which can be used to show
  2707. one or more vertical rulers in the editor. The option, if
  2708. defined, should be given an array of <code>{column [, className,
  2709. color, lineStyle, width]}</code> objects or numbers (which
  2710. indicate a column). The ruler will be displayed at the column
  2711. indicated by the number or the <code>column</code> property.
  2712. The <code>className</code> property can be used to assign a
  2713. custom style to a ruler. <a href="../demo/rulers.html">Demo
  2714. here</a>.</dd>
  2715. <dt id="addon_panel"><a href="../addon/display/panel.js"><code>display/panel.js</code></a></dt>
  2716. <dd>Defines an <code>addPanel</code> method for CodeMirror
  2717. instances, which places a DOM node above or below an editor, and
  2718. shrinks the editor to make room for the node. The method takes
  2719. as first argument as DOM node, and as second an optional options
  2720. object. The <code>Panel</code> object returned by this method
  2721. has a <code>clear</code> method that is used to remove the
  2722. panel, and a <code>changed</code> method that can be used to
  2723. notify the addon when the size of the panel's DOM node has
  2724. changed.<br/>
  2725. The method accepts the following options:
  2726. <dl>
  2727. <dt><code><strong>position</strong>: string</code></dt>
  2728. <dd>Controls the position of the newly added panel. The
  2729. following values are recognized:
  2730. <dl>
  2731. <dt><code><strong>top</strong> (default)</code></dt>
  2732. <dd>Adds the panel at the very top.</dd>
  2733. <dt><code><strong>after-top</strong></code></dt>
  2734. <dd>Adds the panel at the bottom of the top panels.</dd>
  2735. <dt><code><strong>bottom</strong></code></dt>
  2736. <dd>Adds the panel at the very bottom.</dd>
  2737. <dt><code><strong>before-bottom</strong></code></dt>
  2738. <dd>Adds the panel at the top of the bottom panels.</dd>
  2739. </dl>
  2740. </dd>
  2741. <dt><code><strong>before</strong>: Panel</code></dt>
  2742. <dd>The new panel will be added before the given panel.</dd>
  2743. <dt><code><strong>after</strong>: Panel</code></dt>
  2744. <dd>The new panel will be added after the given panel.</dd>
  2745. <dt><code><strong>replace</strong>: Panel</code></dt>
  2746. <dd>The new panel will replace the given panel.</dd>
  2747. <dt><code><strong>stable</strong>: bool</code></dt>
  2748. <dd>Whether to scroll the editor to keep the text's vertical
  2749. position stable, when adding a panel above it. Defaults to false.</dd>
  2750. </dl>
  2751. When using the <code>after</code>, <code>before</code> or <code>replace</code> options,
  2752. if the panel doesn't exists or has been removed,
  2753. the value of the <code>position</code> option will be used as a fallback.
  2754. <br>
  2755. A demo of the addon is available <a href="../demo/panel.html">here</a>.
  2756. </dd>
  2757. <dt id="addon_hardwrap"><a href="../addon/wrap/hardwrap.js"><code>wrap/hardwrap.js</code></a></dt>
  2758. <dd>Addon to perform hard line wrapping/breaking for paragraphs
  2759. of text. Adds these methods to editor instances:
  2760. <dl>
  2761. <dt><code><strong>wrapParagraph</strong>(?pos: {line, ch}, ?options: object)</code></dt>
  2762. <dd>Wraps the paragraph at the given position.
  2763. If <code>pos</code> is not given, it defaults to the cursor
  2764. position.</dd>
  2765. <dt><code><strong>wrapRange</strong>(from: {line, ch}, to: {line, ch}, ?options: object)</code></dt>
  2766. <dd>Wraps the given range as one big paragraph.</dd>
  2767. <dt><code><strong>wrapParagraphsInRange</strong>(from: {line, ch}, to: {line, ch}, ?options: object)</code></dt>
  2768. <dd>Wraps the paragraphs in (and overlapping with) the
  2769. given range individually.</dd>
  2770. </dl>
  2771. The following options are recognized:
  2772. <dl>
  2773. <dt><code><strong>paragraphStart</strong>, <strong>paragraphEnd</strong>: RegExp</code></dt>
  2774. <dd>Blank lines are always considered paragraph boundaries.
  2775. These options can be used to specify a pattern that causes
  2776. lines to be considered the start or end of a paragraph.</dd>
  2777. <dt><code><strong>column</strong>: number</code></dt>
  2778. <dd>The column to wrap at. Defaults to 80.</dd>
  2779. <dt><code><strong>wrapOn</strong>: RegExp</code></dt>
  2780. <dd>A regular expression that matches only those
  2781. two-character strings that allow wrapping. By default, the
  2782. addon wraps on whitespace and after dash characters.</dd>
  2783. <dt><code><strong>killTrailingSpace</strong>: boolean</code></dt>
  2784. <dd>Whether trailing space caused by wrapping should be
  2785. preserved, or deleted. Defaults to true.</dd>
  2786. </dl>
  2787. A demo of the addon is available <a href="../demo/hardwrap.html">here</a>.
  2788. </dd>
  2789. <dt id="addon_merge"><a href="../addon/merge/merge.js"><code>merge/merge.js</code></a></dt>
  2790. <dd>Implements an interface for merging changes, using either a
  2791. 2-way or a 3-way view. The <code>CodeMirror.MergeView</code>
  2792. constructor takes arguments similar to
  2793. the <a href="#CodeMirror"><code>CodeMirror</code></a>
  2794. constructor, first a node to append the interface to, and then
  2795. an options object. Options are passed through to the editors
  2796. inside the view. These extra options are recognized:
  2797. <dl>
  2798. <dt><code><strong>origLeft</strong></code> and <code><strong>origRight</strong>: string</code></dt>
  2799. <dd>If given these provide original versions of the
  2800. document, which will be shown to the left and right of the
  2801. editor in non-editable CodeMirror instances. The merge
  2802. interface will highlight changes between the editable
  2803. document and the original(s). To create a 2-way (as opposed
  2804. to 3-way) merge view, provide only one of them.</dd>
  2805. <dt><code><strong>revertButtons</strong>: boolean</code></dt>
  2806. <dd>Determines whether buttons that allow the user to revert
  2807. changes are shown. Defaults to true.</dd>
  2808. <dt><code><strong>revertChunk</strong>: fn(mv: MergeView, from: CodeMirror, fromStart: Pos, fromEnd: Pos, to: CodeMirror, toStart: Pos, toEnd: Pos)</code></dt>
  2809. <dd>Can be used to define custom behavior when the user
  2810. reverts a changed chunk.</dd>
  2811. <dt><code><strong>connect</strong>: string</code></dt>
  2812. <dd>Sets the style used to connect changed chunks of code.
  2813. By default, connectors are drawn. When this is set
  2814. to <code>"align"</code>, the smaller chunk is padded to
  2815. align with the bigger chunk instead.</dd>
  2816. <dt><code><strong>collapseIdentical</strong>: boolean|number</code></dt>
  2817. <dd>When true (default is false), stretches of unchanged
  2818. text will be collapsed. When a number is given, this
  2819. indicates the amount of lines to leave visible around such
  2820. stretches (which defaults to 2).</dd>
  2821. <dt><code><strong>allowEditingOriginals</strong>: boolean</code></dt>
  2822. <dd>Determines whether the original editor allows editing.
  2823. Defaults to false.</dd>
  2824. <dt><code><strong>showDifferences</strong>: boolean</code></dt>
  2825. <dd>When true (the default), changed pieces of text are
  2826. highlighted.</dd>
  2827. <dt><code><strong>chunkClassLocation</strong>: string|Array</code></dt>
  2828. <dd>By default the chunk highlights are added
  2829. using <a href="#addLineClass"><code>addLineClass</code></a>
  2830. with "background". Override this to customize it to be any
  2831. valid `where` parameter or an Array of valid `where`
  2832. parameters.</dd>
  2833. </dl>
  2834. The addon also defines commands <code>"goNextDiff"</code>
  2835. and <code>"goPrevDiff"</code> to quickly jump to the next
  2836. changed chunk. <a href="../demo/merge.html">Demo
  2837. here</a>.</dd>
  2838. <dt id="addon_tern"><a href="../addon/tern/tern.js"><code>tern/tern.js</code></a></dt>
  2839. <dd>Provides integration with
  2840. the <a href="https://ternjs.net">Tern</a> JavaScript analysis
  2841. engine, for completion, definition finding, and minor
  2842. refactoring help. See the <a href="../demo/tern.html">demo</a>
  2843. for a very simple integration. For more involved scenarios, see
  2844. the comments at the top of
  2845. the <a href="../addon/tern/tern.js">addon</a> and the
  2846. implementation of the
  2847. (multi-file) <a href="https://ternjs.net/doc/demo/index.html">demonstration
  2848. on the Tern website</a>.</dd>
  2849. </dl>
  2850. </section>
  2851. <section id=modeapi>
  2852. <h2>Writing CodeMirror Modes</h2>
  2853. <p>Modes typically consist of a single JavaScript file. This file
  2854. defines, in the simplest case, a lexer (tokenizer) for your
  2855. language—a function that takes a character stream as input,
  2856. advances it past a token, and returns a style for that token. More
  2857. advanced modes can also handle indentation for the language.</p>
  2858. <p>This section describes the low-level mode interface. Many modes
  2859. are written directly against this, since it offers a lot of
  2860. control, but for a quick mode definition, you might want to use
  2861. the <a href="../demo/simplemode.html">simple mode addon</a>.</p>
  2862. <p id="defineMode">The mode script should
  2863. call <code><strong>CodeMirror.defineMode</strong></code> to
  2864. register itself with CodeMirror. This function takes two
  2865. arguments. The first should be the name of the mode, for which you
  2866. should use a lowercase string, preferably one that is also the
  2867. name of the files that define the mode (i.e. <code>"xml"</code> is
  2868. defined in <code>xml.js</code>). The second argument should be a
  2869. function that, given a CodeMirror configuration object (the thing
  2870. passed to the <code>CodeMirror</code> function) and an optional
  2871. mode configuration object (as in
  2872. the <a href="#option_mode"><code>mode</code></a> option), returns
  2873. a mode object.</p>
  2874. <p>Typically, you should use this second argument
  2875. to <code>defineMode</code> as your module scope function (modes
  2876. should not leak anything into the global scope!), i.e. write your
  2877. whole mode inside this function.</p>
  2878. <p>The main responsibility of a mode script is <em>parsing</em>
  2879. the content of the editor. Depending on the language and the
  2880. amount of functionality desired, this can be done in really easy
  2881. or extremely complicated ways. Some parsers can be stateless,
  2882. meaning that they look at one element (<em>token</em>) of the code
  2883. at a time, with no memory of what came before. Most, however, will
  2884. need to remember something. This is done by using a <em>state
  2885. object</em>, which is an object that is always passed when
  2886. reading a token, and which can be mutated by the tokenizer.</p>
  2887. <p id="startState">Modes that use a state must define
  2888. a <code><strong>startState</strong></code> method on their mode
  2889. object. This is a function of no arguments that produces a state
  2890. object to be used at the start of a document.</p>
  2891. <p id="token">The most important part of a mode object is
  2892. its <code><strong>token</strong>(stream, state)</code> method. All
  2893. modes must define this method. It should read one token from the
  2894. stream it is given as an argument, optionally update its state,
  2895. and return a style string, or <code>null</code> for tokens that do
  2896. not have to be styled. For your styles, you are encouraged to use
  2897. the 'standard' names defined in the themes (without
  2898. the <code>cm-</code> prefix). If that fails, it is also possible
  2899. to come up with your own and write your own CSS theme file.<p>
  2900. <p id="token_style_line">A typical token string would
  2901. be <code>"variable"</code> or <code>"comment"</code>. Multiple
  2902. styles can be returned (separated by spaces), for
  2903. example <code>"string error"</code> for a thing that looks like a
  2904. string but is invalid somehow (say, missing its closing quote).
  2905. When a style is prefixed by <code>"line-"</code>
  2906. or <code>"line-background-"</code>, the style will be applied to
  2907. the whole line, analogous to what
  2908. the <a href="#addLineClass"><code>addLineClass</code></a> method
  2909. does—styling the <code>"text"</code> in the simple case, and
  2910. the <code>"background"</code> element
  2911. when <code>"line-background-"</code> is prefixed.</p>
  2912. <p id="StringStream">The stream object that's passed
  2913. to <code>token</code> encapsulates a line of code (tokens may
  2914. never span lines) and our current position in that line. It has
  2915. the following API:</p>
  2916. <dl>
  2917. <dt><code><strong>eol</strong>() → boolean</code></dt>
  2918. <dd>Returns true only if the stream is at the end of the
  2919. line.</dd>
  2920. <dt><code><strong>sol</strong>() → boolean</code></dt>
  2921. <dd>Returns true only if the stream is at the start of the
  2922. line.</dd>
  2923. <dt><code><strong>peek</strong>() → string</code></dt>
  2924. <dd>Returns the next character in the stream without advancing
  2925. it. Will return a <code>null</code> at the end of the
  2926. line.</dd>
  2927. <dt><code><strong>next</strong>() → string</code></dt>
  2928. <dd>Returns the next character in the stream and advances it.
  2929. Also returns <code>null</code> when no more characters are
  2930. available.</dd>
  2931. <dt><code><strong>eat</strong>(match: string|regexp|function(char: string) → boolean) → string</code></dt>
  2932. <dd><code>match</code> can be a character, a regular expression,
  2933. or a function that takes a character and returns a boolean. If
  2934. the next character in the stream 'matches' the given argument,
  2935. it is consumed and returned. Otherwise, <code>undefined</code>
  2936. is returned.</dd>
  2937. <dt><code><strong>eatWhile</strong>(match: string|regexp|function(char: string) → boolean) → boolean</code></dt>
  2938. <dd>Repeatedly calls <code>eat</code> with the given argument,
  2939. until it fails. Returns true if any characters were eaten.</dd>
  2940. <dt><code><strong>eatSpace</strong>() → boolean</code></dt>
  2941. <dd>Shortcut for <code>eatWhile</code> when matching
  2942. white-space.</dd>
  2943. <dt><code><strong>skipToEnd</strong>()</code></dt>
  2944. <dd>Moves the position to the end of the line.</dd>
  2945. <dt><code><strong>skipTo</strong>(str: string) → boolean</code></dt>
  2946. <dd>Skips to the start of the next occurrence of the given string, if
  2947. found on the current line (doesn't advance the stream if the
  2948. string does not occur on the line). Returns true if the
  2949. string was found.</dd>
  2950. <dt><code><strong>match</strong>(pattern: string, ?consume: boolean, ?caseFold: boolean) → boolean</code></dt>
  2951. <dt><code><strong>match</strong>(pattern: regexp, ?consume: boolean) → array&lt;string&gt;</code></dt>
  2952. <dd>Act like a
  2953. multi-character <code>eat</code>—if <code>consume</code> is true
  2954. or not given—or a look-ahead that doesn't update the stream
  2955. position—if it is false. <code>pattern</code> can be either a
  2956. string or a regular expression starting with <code>^</code>.
  2957. When it is a string, <code>caseFold</code> can be set to true to
  2958. make the match case-insensitive. When successfully matching a
  2959. regular expression, the returned value will be the array
  2960. returned by <code>match</code>, in case you need to extract
  2961. matched groups.</dd>
  2962. <dt><code><strong>backUp</strong>(n: integer)</code></dt>
  2963. <dd>Backs up the stream <code>n</code> characters. Backing it up
  2964. further than the start of the current token will cause things to
  2965. break, so be careful.</dd>
  2966. <dt><code><strong>column</strong>() → integer</code></dt>
  2967. <dd>Returns the column (taking into account tabs) at which the
  2968. current token starts.</dd>
  2969. <dt><code><strong>indentation</strong>() → integer</code></dt>
  2970. <dd>Tells you how far the current line has been indented, in
  2971. spaces. Corrects for tab characters.</dd>
  2972. <dt><code><strong>current</strong>() → string</code></dt>
  2973. <dd>Get the string between the start of the current token and
  2974. the current stream position.</dd>
  2975. <dt><code><strong>lookAhead</strong>(n: number) → ?string</code></dt>
  2976. <dd>Get the line <code>n</code> (&gt;0) lines after the current
  2977. one, in order to scan ahead across line boundaries. Note that
  2978. you want to do this carefully, since looking far ahead will make
  2979. mode state caching much less effective.</dd>
  2980. <dt id="baseToken"><code><strong>baseToken</strong>() → ?{type: ?string, size: number}</code></dt>
  2981. <dd>Modes added
  2982. through <a href="#addOverlay"><code>addOverlay</code></a>
  2983. (and <em>only</em> such modes) can use this method to inspect
  2984. the current token produced by the underlying mode.</dd>
  2985. </dl>
  2986. <p id="blankLine">By default, blank lines are simply skipped when
  2987. tokenizing a document. For languages that have significant blank
  2988. lines, you can define
  2989. a <code><strong>blankLine</strong>(state)</code> method on your
  2990. mode that will get called whenever a blank line is passed over, so
  2991. that it can update the parser state.</p>
  2992. <p id="copyState">Because state object are mutated, and CodeMirror
  2993. needs to keep valid versions of a state around so that it can
  2994. restart a parse at any line, copies must be made of state objects.
  2995. The default algorithm used is that a new state object is created,
  2996. which gets all the properties of the old object. Any properties
  2997. which hold arrays get a copy of these arrays (since arrays tend to
  2998. be used as mutable stacks). When this is not correct, for example
  2999. because a mode mutates non-array properties of its state object, a
  3000. mode object should define
  3001. a <code><strong>copyState</strong></code> method, which is given a
  3002. state and should return a safe copy of that state.</p>
  3003. <p id="indent">If you want your mode to provide smart indentation
  3004. (through the <a href="#indentLine"><code>indentLine</code></a>
  3005. method and the <code>indentAuto</code>
  3006. and <code>newlineAndIndent</code> commands, to which keys can be
  3007. <a href="#option_extraKeys">bound</a>), you must define
  3008. an <code><strong>indent</strong>(state, textAfter)</code> method
  3009. on your mode object.</p>
  3010. <p>The indentation method should inspect the given state object,
  3011. and optionally the <code>textAfter</code> string, which contains
  3012. the text on the line that is being indented, and return an
  3013. integer, the amount of spaces to indent. It should usually take
  3014. the <a href="#option_indentUnit"><code>indentUnit</code></a>
  3015. option into account. An indentation method may
  3016. return <code>CodeMirror.Pass</code> to indicate that it
  3017. could not come up with a precise indentation.</p>
  3018. <p id="mode_comment">To work well with
  3019. the <a href="#addon_comment">commenting addon</a>, a mode may
  3020. define <code><strong>lineComment</strong></code> (string that
  3021. starts a line
  3022. comment), <code><strong>blockCommentStart</strong></code>, <code><strong>blockCommentEnd</strong></code>
  3023. (strings that start and end block comments),
  3024. and <code>blockCommentLead</code> (a string to put at the start of
  3025. continued lines in a block comment). All of these are
  3026. optional.</p>
  3027. <p id="electricChars">Finally, a mode may define either
  3028. an <code>electricChars</code> or an <code>electricInput</code>
  3029. property, which are used to automatically reindent the line when
  3030. certain patterns are typed and
  3031. the <a href="#option_electricChars"><code>electricChars</code></a>
  3032. option is enabled. <code>electricChars</code> may be a string, and
  3033. will trigger a reindent whenever one of the characters in that
  3034. string are typed. Often, it is more appropriate to
  3035. use <code>electricInput</code>, which should hold a regular
  3036. expression, and will trigger indentation when the part of the
  3037. line <em>before</em> the cursor matches the expression. It should
  3038. usually end with a <code>$</code> character, so that it only
  3039. matches when the indentation-changing pattern was just typed, not when something was
  3040. typed after the pattern.</p>
  3041. <p>So, to summarize, a mode <em>must</em> provide
  3042. a <code>token</code> method, and it <em>may</em>
  3043. provide <code>startState</code>, <code>copyState</code>,
  3044. and <code>indent</code> methods. For an example of a trivial mode,
  3045. see the <a href="../mode/diff/diff.js">diff mode</a>, for a more
  3046. involved example, see the <a href="../mode/clike/clike.js">C-like
  3047. mode</a>.</p>
  3048. <p>Sometimes, it is useful for modes to <em>nest</em>—to have one
  3049. mode delegate work to another mode. An example of this kind of
  3050. mode is the <a href="../mode/htmlmixed/htmlmixed.js">mixed-mode HTML
  3051. mode</a>. To implement such nesting, it is usually necessary to
  3052. create mode objects and copy states yourself. To create a mode
  3053. object, there are <code>CodeMirror.getMode(options,
  3054. parserConfig)</code>, where the first argument is a configuration
  3055. object as passed to the mode constructor function, and the second
  3056. argument is a mode specification as in
  3057. the <a href="#option_mode"><code>mode</code></a> option. To copy a
  3058. state object, call <code>CodeMirror.copyState(mode, state)</code>,
  3059. where <code>mode</code> is the mode that created the given
  3060. state.</p>
  3061. <p id="innerMode">In a nested mode, it is recommended to add an
  3062. extra method, <code><strong>innerMode</strong></code> which, given
  3063. a state object, returns a <code>{state, mode}</code> object with
  3064. the inner mode and its state for the current position. These are
  3065. used by utility scripts such as the <a href="#addon_closetag">tag
  3066. closer</a> to get context information. Use
  3067. the <code>CodeMirror.innerMode</code> helper function to, starting
  3068. from a mode and a state, recursively walk down to the innermost
  3069. mode and state.</p>
  3070. <p>To make indentation work properly in a nested parser, it is
  3071. advisable to give the <code>startState</code> method of modes that
  3072. are intended to be nested an optional argument that provides the
  3073. base indentation for the block of code. The JavaScript and CSS
  3074. parser do this, for example, to allow JavaScript and CSS code
  3075. inside the mixed-mode HTML mode to be properly indented.</p>
  3076. <p id="defineMIME">It is possible, and encouraged, to associate
  3077. your mode, or a certain configuration of your mode, with
  3078. a <a href="http://en.wikipedia.org/wiki/MIME">MIME</a> type. For
  3079. example, the JavaScript mode associates itself
  3080. with <code>text/javascript</code>, and its JSON variant
  3081. with <code>application/json</code>. To do this,
  3082. call <code><strong>CodeMirror.defineMIME</strong>(mime,
  3083. modeSpec)</code>, where <code>modeSpec</code> can be a string or
  3084. object specifying a mode, as in
  3085. the <a href="#option_mode"><code>mode</code></a> option.</p>
  3086. <p>If a mode specification wants to add some properties to the
  3087. resulting mode object, typically for use
  3088. with <a href="#getHelpers"><code>getHelpers</code></a>, it may
  3089. contain a <code>modeProps</code> property, which holds an object.
  3090. This object's properties will be copied to the actual mode
  3091. object.</p>
  3092. <p id="extendMode">Sometimes, it is useful to add or override mode
  3093. object properties from external code.
  3094. The <code><strong>CodeMirror.extendMode</strong></code> function
  3095. can be used to add properties to mode objects produced for a
  3096. specific mode. Its first argument is the name of the mode, its
  3097. second an object that specifies the properties that should be
  3098. added. This is mostly useful to add utilities that can later be
  3099. looked up through <a href="#getMode"><code>getMode</code></a>.</p>
  3100. </section>
  3101. <section id="vimapi">
  3102. <h2>VIM Mode API</h2>
  3103. <p>CodeMirror has a robust VIM mode that attempts to faithfully
  3104. emulate VIM's most useful features. It can be enabled by
  3105. including <a href="../keymap/vim.js"><code>keymap/vim.js</code>
  3106. </a> and setting the <code>keyMap</code> option to
  3107. <code>"vim"</code>.</p>
  3108. <h3 id="vimapi_configuration">Configuration</h3>
  3109. <p>VIM mode accepts configuration options for customizing
  3110. behavior at run time. These methods can be called at any time
  3111. and will affect all existing CodeMirror instances unless
  3112. specified otherwise. The methods are exposed on the
  3113. <code><strong>CodeMirror.Vim</strong></code> object.</p>
  3114. <dl>
  3115. <dt id="vimapi_setOption"><code><strong>setOption(name: string, value: any, ?cm: CodeMirror, ?cfg: object)</strong></code></dt>
  3116. <dd>Sets the value of a VIM option. <code>name</code> should
  3117. be the name of an option. If <code>cfg.scope</code> is not set
  3118. and <code>cm</code> is provided, then sets the global and
  3119. instance values of the option. Otherwise, sets either the
  3120. global or instance value of the option depending on whether
  3121. <code>cfg.scope</code> is <code>global</code> or
  3122. <code>local</code>.</dd>
  3123. <dt id="vimapi_getOption"><code><strong>getOption(name: string, ?cm: CodeMirror: ?cfg: object)</strong></code></dt>
  3124. <dd>Gets the current value of a VIM option. If
  3125. <code>cfg.scope</code> is not set and <code>cm</code> is
  3126. provided, then gets the instance value of the option, falling
  3127. back to the global value if not set. If <code>cfg.scope</code> is provided, then gets the <code>global</code> or
  3128. <code>local</code> value without checking the other.</dd>
  3129. <dt id="vimapi_map"><code><strong>map(lhs: string, rhs: string, ?context: string)</strong></code></dt>
  3130. <dd>Maps a key sequence to another key sequence. Implements
  3131. VIM's <code>:map</code> command. To map ; to : in VIM would be
  3132. <code><strong>:map ; :</strong></code>. That would translate to
  3133. <code><strong>CodeMirror.Vim.map(';', ':');</strong></code>.
  3134. The <code>context</code> can be <code>normal</code>,
  3135. <code>visual</code>, or <code>insert</code>, which correspond
  3136. to <code>:nmap</code>, <code>:vmap</code>, and
  3137. <code>:imap</code>
  3138. respectively.</dd>
  3139. <dt id="vimapi_mapCommand"><code><strong>mapCommand(keys: string, type: string, name: string, ?args: object, ?extra: object)</strong></code></dt>
  3140. <dd>Maps a key sequence to a <code>motion</code>,
  3141. <code>operator</code>, or <code>action</code> type command.
  3142. The args object is passed through to the command when it is
  3143. invoked by the provided key sequence.
  3144. <code>extras.context</code> can be <code>normal</code>,
  3145. <code>visual</code>, or <code>insert</code>, to map the key
  3146. sequence only in the corresponding mode.
  3147. <code>extras.isEdit</code> is applicable only to actions,
  3148. determining whether it is recorded for replay for the
  3149. <code>.</code> single-repeat command.
  3150. <dt id="vimapi_unmap"><strong><code>unmap(lhs: string, ctx: string)</code></strong></dt>
  3151. <dd>
  3152. Remove the command <code>lhs</code> if it is a user defined command.
  3153. If the command is an Ex to Ex or Ex to key mapping then the context
  3154. must be <code>undefined</code> or <code>false</code>.
  3155. </dd>
  3156. <dt id="vimapi_mapclear"><strong><code>mapclear(ctx: string)</code></strong></dt>
  3157. <dd>
  3158. Remove all user-defined mappings for the provided context.
  3159. </dd>
  3160. <dt id="vimapi_noremap"><strong><code>noremap(lhs: string, rhs: string, ctx: {string, array&lt;string&gt;})</code></strong></dt>
  3161. <dd>
  3162. Non-recursive map function. This will not create mappings to key maps
  3163. that aren't present in the default key map.
  3164. If no context is provided then the mapping will be applied to each of
  3165. normal, insert, and visual mode.
  3166. </dd>
  3167. </dl>
  3168. <h3 id="vimapi_extending">Extending VIM</h3>
  3169. <p>CodeMirror's VIM mode implements a large subset of VIM's core
  3170. editing functionality. But since there's always more to be
  3171. desired, there is a set of APIs for extending VIM's
  3172. functionality. As with the configuration API, the methods are
  3173. exposed on <code><strong>CodeMirror.Vim</strong></code> and may
  3174. be called at any time.</p>
  3175. <dl>
  3176. <dt id="vimapi_defineOption"><code><strong>defineOption(name: string, default: any, type: string, ?aliases: array&lt;string&gt;, ?callback: function (?value: any, ?cm: CodeMirror) → ?any)</strong></code></dt>
  3177. <dd>Defines a VIM style option and makes it available to the
  3178. <code>:set</code> command. Type can be <code>boolean</code> or
  3179. <code>string</code>, used for validation and by
  3180. <code>:set</code> to determine which syntax to accept. If a
  3181. <code>callback</code> is passed in, VIM does not store the value of the
  3182. option itself, but instead uses the callback as a setter/getter. If the
  3183. first argument to the callback is <code>undefined</code>, then the
  3184. callback should return the value of the option. Otherwise, it should set
  3185. instead. Since VIM options have global and instance values, whether a
  3186. <code>CodeMirror</code> instance is passed in denotes whether the global
  3187. or local value should be used. Consequently, it's possible for the
  3188. callback to be called twice for a single <code>setOption</code> or
  3189. <code>getOption</code> call. Note that right now, VIM does not support
  3190. defining buffer-local options that do not have global values. If an
  3191. option should not have a global value, either always ignore the
  3192. <code>cm</code> parameter in the callback, or always pass in a
  3193. <code>cfg.scope</code> to <code>setOption</code> and
  3194. <code>getOption</code>.</dd>
  3195. <dt id="vimapi_defineMotion"><code><strong>defineMotion(name: string, fn: function(cm: CodeMirror, head: {line, ch}, ?motionArgs: object}) → {line, ch})</strong></code></dt>
  3196. <dd>Defines a motion command for VIM. The motion should return
  3197. the desired result position of the cursor. <code>head</code>
  3198. is the current position of the cursor. It can differ from
  3199. <code>cm.getCursor('head')</code> if VIM is in visual mode.
  3200. <code>motionArgs</code> is the object passed into
  3201. <strong><code>mapCommand()</code></strong>.</dd>
  3202. <dt id="vimapi_defineOperator"><strong><code>defineOperator(name: string, fn: function(cm: CodeMirror, ?operatorArgs: object, ranges: array&lt;{anchor, head}&gt;) → ?{line, ch})</code></strong></dt>
  3203. <dd>Defines an operator command, similar to <strong><code>
  3204. defineMotion</code></strong>. <code>ranges</code> is the range
  3205. of text the operator should operate on. If the cursor should
  3206. be set to a certain position after the operation finishes, it
  3207. can return a cursor object.</dd>
  3208. <dt id="vimapi_defineActon"><strong><code>defineAction(name: string, fn: function(cm: CodeMirror, ?actionArgs: object))</code></strong></dt>
  3209. <dd>Defines an action command, similar to
  3210. <strong><code>defineMotion</code></strong>. Action commands
  3211. can have arbitrary behavior, making them more flexible than
  3212. motions and operators, at the loss of orthogonality.</dd>
  3213. <dt id="vimapi_defineEx"><strong><code>defineEx(name: string, ?prefix: string, fn: function(cm: CodeMirror, ?params: object))</code></strong></dt>
  3214. <dd>Defines an Ex command, and maps it to <code>:name</code>.
  3215. If a prefix is provided, it, and any prefixed substring of the
  3216. <code>name</code> beginning with the <code>prefix</code> can
  3217. be used to invoke the command. If the <code>prefix</code> is
  3218. falsy, then <code>name</code> is used as the prefix. <code>
  3219. params.argString</code> contains the part of the prompted
  3220. string after the command name. <code>params.args</code> is
  3221. <code>params.argString</code> split by whitespace. If the
  3222. command was prefixed with a
  3223. <code><strong><a href="http://vimdoc.sourceforge.net/htmldoc/cmdline.html#cmdline-ranges">line range</a></strong></code>,
  3224. <code>params.line</code> and <code>params.lineEnd</code> will
  3225. be set.</dd>
  3226. <dt id="vimapi_getRegisterController"><strong><code>getRegisterController()</code></strong></dt>
  3227. <dd>Returns the RegisterController that manages the state of registers
  3228. used by vim mode. For the RegisterController api see its
  3229. defintion <a href="https://github.com/CodeMirror/CodeMirror/blob/b2d26b4ccb1d0994ae84d18ad8b84018de176da9/keymap/vim.js#L1123">here</a>.
  3230. </dd>
  3231. <dt id='vimapi_buildkeymap'><strong><code>buildKeyMap()</code></strong></dt>
  3232. <dd>
  3233. Not currently implemented. If you would like to contribute this please open
  3234. a pull request on <a href="https://github.com/codemirror/CodeMirror">Github</a>.
  3235. </dd>
  3236. <dt id="vimapi_defineRegister"><strong><code>defineRegister()</code></strong></dt>
  3237. <dd> Defines an external register. The name should be a single character
  3238. that will be used to reference the register. The register should support
  3239. <code>setText</code>, <code>pushText</code>, <code>clear</code>, and <code>toString</code>.
  3240. See <a href="https://github.com/CodeMirror/CodeMirror/blob/b2d26b4ccb1d0994ae84d18ad8b84018de176da9/keymap/vim.js#L1055">Register</a> for a reference implementation.
  3241. </dd>
  3242. <dt id="vimapi_getVimGlobalState_"><strong><code>getVimGlobalState_()</code></strong></dt>
  3243. <dd>
  3244. Return a reference to the VimGlobalState.
  3245. </dd>
  3246. <dt id="vimapi_resetVimGlobalState_"><strong><code>resetVimGlobalState_()</code></strong></dt>
  3247. <dd>
  3248. Reset the default values of the VimGlobalState to fresh values. Any options
  3249. set with <code>setOption</code> will also be applied to the reset global state.
  3250. </dd>
  3251. <dt id="vimapi_maybeInitVimState_"><strong><code>maybeInitVimState_(cm: CodeMirror)</code></strong></dt>
  3252. <dd>
  3253. Initialize <code>cm.state.vim</code> if it does not exist. Returns <code>cm.state.vim</code>.
  3254. </dd>
  3255. <dt id="vimapi_handleKey"><strong><code>handleKey(cm: CodeMirror, key: string, origin: string)</code></strong></dt>
  3256. <dd>
  3257. Convenience function to pass the arguments to <code>findKey</code> and
  3258. call returned function if it is defined.
  3259. </dd>
  3260. <dt id="vimapi_findKey"><strong><code>findKey(cm: CodeMirror, key: string, origin: string)</code></strong></dt>
  3261. <dd>
  3262. This is the outermost function called by CodeMirror, after keys have
  3263. been mapped to their Vim equivalents. Finds a command based on the key
  3264. (and cached keys if there is a multi-key sequence). Returns <code>undefined</code>
  3265. if no key is matched, a noop function if a partial match is found (multi-key),
  3266. and a function to execute the bound command if a a key is matched. The
  3267. function always returns true.
  3268. </dd>
  3269. <dt id="vimapi_option_suppressErrorLogging"><code><strong>suppressErrorLogging</strong>: boolean</code></dt>
  3270. <dd>Whether to use suppress the use of <code>console.log</code> when catching an
  3271. error in the function returned by <code>findKey</code>.
  3272. Defaults to false.</dd>
  3273. <dt id="vimapi_exitVisualMode"><strong><code>exitVisualMode(cm: CodeMirror, ?moveHead: boolean)</code></strong></dt>
  3274. <dd> Exit visual mode. If moveHead is set to false, the CodeMirror selection
  3275. will not be touched. The caller assumes the responsibility of putting
  3276. the cursor in the right place.
  3277. </dd>
  3278. <dt id="vimapi_exitInsertMode"><strong><code>exitInsertMode(cm: CodeMirror)</code></strong></dt>
  3279. <dd>
  3280. Exit insert mode.
  3281. </dd>
  3282. </dl>
  3283. </section>
  3284. </article>
  3285. <script>setTimeout(function(){CodeMirror.colorize();}, 20);</script>