Go to file
Marijn Haverbeke eac70bb1a3 Mark version 5.61.0 2021-04-20 10:19:47 +02:00
.github Add a funding.yml file 2020-12-03 19:30:35 +01:00
addon [show-hint addon] Fix race condition in scroll measurement 2021-04-14 17:22:18 +02:00
bin Change Google Inc. to Google LLC 2018-10-19 09:58:25 +02:00
demo [anywordhint demo] Update to show current code 2021-04-12 17:20:44 +02:00
doc Mark version 5.61.0 2021-04-20 10:19:47 +02:00
keymap [emacs bindings] Define named commands for the key bindings 2021-04-19 12:32:45 +02:00
lib Revert "Fix white CodeMirror-scrollbar-filler on dark themes" 2021-02-24 11:16:29 +01:00
mode [r mode] Tweak regex for dots 2021-04-10 14:01:49 +02:00
src Mark version 5.61.0 2021-04-20 10:19:47 +02:00
test [vim] add :vglobal ex command 2021-02-20 21:34:33 +01:00
theme [solaized theme] Fix typos 2020-12-07 10:16:23 +01: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
.travis.yml Use new 'cache: npm' travis feature 2018-10-26 10:02:48 +02:00
AUTHORS Mark version 5.61.0 2021-04-20 10:19:47 +02:00
CHANGELOG.md Mark version 5.61.0 2021-04-20 10:19:47 +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 Remove link to gitter room 2020-10-02 23:40:06 +02:00
index.html Mark version 5.61.0 2021-04-20 10:19:47 +02:00
package.json Mark version 5.61.0 2021-04-20 10:19:47 +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.