Go to file
Marijn Haverbeke 18a8ae2f28 Adjust posFromMouse to handle arbitrary xRel field values
Closes #6067
2019-11-19 10:25:13 +01:00
addon [continuecomment addon] Continue comments when a newline is inserted before them 2019-11-17 14:44:17 +01:00
bin Change Google Inc. to Google LLC 2018-10-19 09:58:25 +02:00
demo [ayu-dark and ayu-mirage themes] Add 2019-11-14 09:36:31 +01:00
doc Bump version number post-5.49.2 2019-10-21 08:22:29 +02:00
keymap [sublime keymap] Pass local token type to scanForBracket when appropriate 2019-10-28 10:59:50 +01:00
lib Update PR to use .CodeMirror-line-like class 2019-08-17 14:26:51 +02:00
mode [julia mode] Fix getting stuck on integers with leading zeroes 2019-11-15 09:22:03 +01:00
src Adjust posFromMouse to handle arbitrary xRel field values 2019-11-19 10:25:13 +01:00
test [searchcursor addon] Fix behavior in overlapping reverse regexp searches 2019-11-08 10:46:14 +01:00
theme [ayu-dark and ayu-mirage themes] Add 2019-11-14 09:36:31 +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 - Refactoring: Update to latest Rollup API 2018-10-06 23:34:09 +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.49.2 2019-10-21 08:20:47 +02:00
CHANGELOG.md Mark version 5.49.2 2019-10-21 08:20: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 Drop funding-status smiley face 2018-11-12 11:08:47 +01:00
index.html Mark version 5.49.2 2019-10-21 08:20:47 +02:00
package.json Codemirror: Replaced PhantomJS Dependency with Puppeteer 2019-11-05 08:47:08 +01:00
rollup.config.js Fix trailing whitespace in build output 2018-10-06 23:49:44 +02:00

README.md

CodeMirror

Build Status NPM version Join the chat at https://gitter.im/codemirror/CodeMirror

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.