Ace (Ajax.org Cloud9 Editor) http://ace.c9.io
Find a file
2011-08-16 13:57:38 +02:00
build package 2011-08-16 13:49:47 +02:00
build_support remove dependency on canon 2011-08-16 13:57:37 +02:00
demo get rid of boot.js 2011-08-16 13:57:37 +02:00
doc update wiki submodule 2011-08-04 16:24:15 +02:00
experiments add old experiments 2011-01-17 08:45:15 +01:00
lib/ace I can insert text again 2011-08-16 13:57:38 +02:00
support remove cockpit submodule 2011-08-16 13:57:37 +02:00
tool update themes with highlighting for tags 2011-08-12 13:52:33 +02:00
.gitignore add dryice submodule 2011-07-11 12:10:35 +02:00
.gitmodules remove dependency on canon 2011-08-16 13:57:37 +02:00
ChangeLog.txt spell correction 2011-08-03 18:31:08 +02:00
index.html remove dependency on canon 2011-08-16 13:57:37 +02:00
kitchen-sink.html get rid of boot.js 2011-08-16 13:57:37 +02:00
LICENSE Merge remote branch 'jviereck/keymapping' 2011-01-14 15:21:38 +01:00
Makefile package kitchen sink demo and include it in the build 2011-08-03 16:47:43 +02:00
Makefile.dryice.js get rid of boot.js 2011-08-16 13:57:37 +02:00
package.json remove dependency on canon 2011-08-16 13:57:37 +02:00
Readme.md update build instructions 2011-07-11 12:20:23 +02:00
static.js print server running message 2011-07-19 13:17:21 +02:00
static.py Update Readme. Make static.py serve on port 8888 like static.js does. 2011-05-23 11:07:56 +02:00
version.js simple packager 2011-01-31 08:49:46 +01:00

Ace (Ajax.org Cloud9 Editor)

Ace is a standalone code editor written in JavaScript. Our goal is to create a browser based editor that matches and extends the features, usability and performance of existing native editors such as TextMate, Vim or Eclipse. It can be easily embedded in any web page or JavaScript application. Ace is developed as the primary editor for Cloud9 IDE and the successor of the Mozilla Skywriter (Bespin) Project.

Features

  • Syntax highlighting
  • Automatic indent and outdent
  • An optional command line
  • Handles huge documents (100,000 lines and more are no problem)
  • Fully customizable key bindings including VI and Emacs modes
  • Themes (TextMate themes can be imported)
  • Search and replace with regular expressions
  • Highlight matching parentheses
  • Toggle between soft tabs and real tabs
  • Displays hidden characters
  • Drag and drop text using the mouse
  • Line wrapping
  • Unstructured / user code folding
  • Live syntax checker (currently JavaScript/CoffeeScript)

Take Ace for a spin!

Check out the Ace live demo or get a Cloud9 IDE account to experience Ace while editing one of your own GitHub projects.

If you want, you can use Ace as a textarea replacement thanks to the Ace Bookmarklet.

History

Previously known as “Bespin” and “Skywriter” its now known as Ace (Ajax.org Cloud9 Editor)! Bespin and Ace started as two independent projects both aiming to build a no compromise code editor component for the web. Bespin started as part of Mozilla Labs and was based on the canvas tag, while Ace is the Editor component of the Cloud9 IDE and is using the DOM for rendering. After the release of Ace at JSConf.eu 2010 in Berlin the Skywriter team decided to merge Ace with a simplified version of Skywriter's plugin system and some of Skywriter's extensibility points. All these changes have been merged back to Ace. Both Ajax.org and Mozilla are actively developing and maintaining Ace.

Getting the code

Ace is a community project. We actively encourage and support contributions. The Ace source code is hosted on GitHub. It is released under the Mozilla tri-license (MPL/GPL/LGPL), the same license used by Firefox. This license is friendly to all kinds of projects, whether open source or not. Take charge of your editor and add your favorite language highlighting and keybindings!

git clone git://github.com/ajaxorg/ace.git
cd ace
git submodule update --init --recursive

Embedding Ace

Ace can be easily embedded into any existing web page. The Ace git repository ships with a pre-packaged version of Ace inside of the build directory. The same packaged files are also available as a separate download. Simply copy the contents of the src subdirectory somewhere into your project and take a look at the included demos of how to use Ace.

The easiest version is simply:

<div id="editor">some text</div>
<script src="src/ace.js" type="text/javascript" charset="utf-8"></script>
<script>
window.onload = function() {
    var editor = ace.edit("editor");
};
</script>

With "editor" being the id of the DOM element, which should be converted to an editor. Note that this element must be explicitly sized and positioned absolute or relative for Ace to work. e.g.

#editor {
    position: absolute;
    width: 500px;
    height: 400px;
}

To change the theme simply include the Theme's JavaScript file

<script src="src/theme-twilight.js" type="text/javascript" charset="utf-8"></script>

and configure the editor to use the theme:

editor.setTheme("ace/theme/twilight");

By default the editor only supports plain text mode; many other languages are available as separate modules. After including the mode's JavaScript file:

<script src="src/mode-javascript.js" type="text/javascript" charset="utf-8"></script>

Then the mode can be used like this:

var JavaScriptMode = require("ace/mode/javascript").Mode;
editor.getSession().setMode(new JavaScriptMode());

Documentation

You find a lot more sample code in the demo app.

There is also some documentation on the wiki page.

If you still need help, feel free to drop a mail on the ace mailing list.

Running Ace

After the checkout Ace works out of the box. No build step is required. Open 'editor.html' in any browser except Google Chrome. Google Chrome doesn't allow XMLHTTPRequests from files loaded from disc (i.e. with a file:/// URL). To open Ace in Chrome simply start the bundled mini HTTP server:

./static.py

Or using Node.JS

./static.js

The editor can then be opened at http://localhost:8888/index.html.

Package Ace

To package Ace we use the dryice build tool developed by the Mozilla Skywriter team. Before you can build you need to make sure that the submodules are up to date.

git submodule update --init --recursive

Afterwards Ace can be built by calling

./Makefile.dryice.js normal

The packaged Ace will be put in the 'build' folder.

To build the bookmarklet version execute

./Makefile.dryice.js bm

Running the Unit Tests

The Ace unit tests run on node.js. Before the first run a couple of node modules have to be installed. The easiest way to do this is by using the node package manager (npm). In the Ace base directory simply call

npm link .

To run the tests call:

node lib/ace/test/all.js

You can also run the tests in your browser by serving:

http://localhost:8888/lib/ace/test/tests.html

This makes debugging failing tests way more easier.

Note: Currently (2011-05-21) the tests seem to run on Chrome only.

Contributing

Ace wouldn't be where it is now without contributions. Feel free to fork and improve/enhance Ace in any way your want. If you feel that the editor or the Ace community will benefit from your changes, please open a pull request. To protect the interests of the Ace contributors and users we require contributors to sign a Contributors License Agreement (CLA) before we pull the changes into the main repository. Our CLA is the simplest of agreements, requiring that the contributions you make to an ajax.org project are only those you're allowed to make. This helps us significantly reduce future legal risk for everyone involved. It is easy, helps everyone, takes ten minutes, and only needs to be completed once. There are two versions of the agreement:

  1. The Individual CLA: use this version if you're working on an ajax.org in your spare time, or can clearly claim ownership of copyright in what you'll be submitting.
  2. The Corporate CLA: have your corporate lawyer review and submit this if your company is going to be contributing to ajax.org projects

If you want to contribute to an ajax.org project please print the CLA and fill it out and sign it. Then either send it by snail mail or fax to us or send it back scanned (or as a photo) by email.

Email: fabian.jakobs@web.de

Fax: +31 (0) 206388953

Address: Ajax.org B.V. Keizersgracht 241 1016 EA, Amsterdam the Netherlands