Go to file
Marijn Haverbeke 5180d1e0ed [lint addon] Fix a regression that broke the getAnnotations option
Introduced in 70c615c5ff
2021-07-21 13:41:46 +02:00
.github Adjust ci script 2021-06-15 08:06:49 +02:00
addon [lint addon] Fix a regression that broke the getAnnotations option 2021-07-21 13:41:46 +02:00
bin Change Google Inc. to Google LLC 2018-10-19 09:58:25 +02:00
demo [themes] Make sure fat cursor backgrounds are specialized for .cm-fat-cursor 2021-06-21 07:58:42 +02:00
doc Mark version 5.62.1 2021-07-20 21:21:32 +02:00
keymap [vim bindings] Make compatible with Trusted Types 2021-07-20 20:15:03 +02:00
lib Revert "Fix white CodeMirror-scrollbar-filler on dark themes" 2021-02-24 11:16:29 +01:00
mode [yaml-frontmatter mode] Treat the start of the document as being in the base mode 2021-07-20 15:56:37 +02:00
src Mark version 5.62.1 2021-07-20 21:21:32 +02:00
test Remove quadratic complexity of adding lots of marks to a single line 2021-05-17 12:18:33 +02:00
theme [themes] Make sure fat cursor backgrounds are specialized for .cm-fat-cursor 2021-06-21 07:58:42 +02:00
.editorconfig add .editorconfig 2017-07-13 11:00:43 +02:00
.gitattributes ensure lf eol on checkout 2017-07-13 11:01:01 +02:00
.gitignore [runmode addon] Reuse existing support code for standalone/node versions of runmode 2020-06-18 15:08:48 +02:00
.npmignore Make sure bin/source-highlight is in the distribution 2018-07-20 18:00:13 +02:00
AUTHORS Mark version 5.62.1 2021-07-20 21:21:32 +02:00
CHANGELOG.md Mark version 5.62.1 2021-07-20 21:21:32 +02:00
CONTRIBUTING.md Make all links to codemirror.net https 2018-07-24 11:39:48 +02:00
LICENSE Added license name 2017-02-01 10:25:59 +01:00
README.md Add github actions CI script 2021-06-15 08:05:47 +02:00
index.html Mark version 5.62.1 2021-07-20 21:21:32 +02:00
package.json Mark version 5.62.1 2021-07-20 21:21:32 +02:00
rollup.config.js [runmode addon] Fix lint issues 2020-06-18 15:13:27 +02:00

README.md

CodeMirror

Build Status NPM version

CodeMirror is a versatile text editor implemented in JavaScript for the browser. It is specialized for editing code, and comes with over 100 language modes and various addons that implement more advanced editing functionality. Every language comes with fully-featured code and syntax highlighting to help with reading and editing complex code.

A rich programming API and a CSS theming system are available for customizing CodeMirror to fit your application, and extending it with new functionality.

You can find more information (and the manual) on the project page. For questions and discussion, use the discussion forum.

See CONTRIBUTING.md for contributing guidelines.

The CodeMirror community aims to be welcoming to everybody. We use the Contributor Covenant (1.1) as our code of conduct.

Installation

Either get the zip file with the latest version, or make sure you have Node installed and run:

npm install codemirror

NOTE: This is the source repository for the library, and not the distribution channel. Cloning it is not the recommended way to install the library, and will in fact not work unless you also run the build step.

Quickstart

To build the project, make sure you have Node.js installed (at least version 6) and then npm install. To run, just open index.html in your browser (you don't need to run a webserver). Run the tests with npm test.