Go to file
Kaushik Kulkarni 0682bcc8d5 [hardwrap addon] introduce forceBreak 2020-07-08 09:27:10 +02:00
addon [hardwrap addon] introduce forceBreak 2020-07-08 09:27:10 +02:00
bin Change Google Inc. to Google LLC 2018-10-19 09:58:25 +02:00
demo [runmode addon] Reuse existing support code for standalone/node versions of runmode 2020-06-18 15:08:48 +02:00
doc [hardwrap addon] introduce forceBreak 2020-07-08 09:27:10 +02:00
keymap [vim] Fix vim-mode-change event being signalled twice 2020-05-29 09:07:16 +02:00
lib Increase size of scrollbar-hack gap 2020-05-04 10:21:04 +02:00
mode [sas mode] Add missing keywords 2020-06-30 00:07:27 +02:00
src Fix line-wise pasting on Chrome Windows 2020-07-08 08:35:37 +02:00
test [vim] Fix vim-mode-change event being signalled twice 2020-05-29 09:07:16 +02:00
theme [zenburn theme] Improve specificity of background selector 2020-03-18 08:09:06 +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.55.0 2020-06-21 15:40:04 +02:00
CHANGELOG.md Mark version 5.55.0 2020-06-21 15:40:04 +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.55.0 2020-06-21 15:40:04 +02:00
package.json Mark version 5.55.0 2020-06-21 15:40:04 +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 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.