Ace is a standalone code editor written in JavaScript. The primary goal is to create a web based code 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 and JavaScript ...

learn more… | top users | synonyms

0
votes
0answers
11 views

Ace Edit saving files line by line

Does anyone know how to get code out of ace edit code editer, and save them dynamicly to a file, like google docs, right now I am checking for changes with the editor.getSession().on('change', ...
0
votes
0answers
7 views

Orion Editor tokenizer

I have a tokenizer in ace editor which lets me move forward and backward in ace editor as in this jsfiddle http://jsfiddle.net/samarjit/W3FQz/. editor.selection.on("changeSelection", function(){ var ...
0
votes
1answer
16 views

Ace Code Editor theme 403

I have installed the code editor Ace onto my site (not locally). Now I am trying to load the theme 'ambiance' as shown in the available themes here. editor.setTheme("ace/theme/ambiance"); However ...
0
votes
1answer
26 views

Ace Editor: Disable converting of certain ACSII characters, ie &lt to <

I'm using Ace editor as a on-site HTML editor. I have a problem with some characters being automatically converted by Ace Editor. I use "&lt" a lot on some of my pages, so I can display HTML ...
1
vote
1answer
57 views

Wordpress + Advanced Custom Fields + ACE Editor Plugin

I'm trying to do a syntax highlighter combined with ACF + ACE editor for WordPress based on this guide. I've done this: <?php class acf_field_ace_code_editor extends acf_field { // vars ...
-1
votes
0answers
17 views

Ace Editor automation using Selenium RC

How can we interact with ACE editor using selenium RC? Basically I have to clear the ACE editor and fill it with a string of characters.
0
votes
1answer
39 views

How to save all text from Ace editor in WT?

So I have embedded an Ace editor in a WT project and loaded a copy of the Ace.js file into it as a test to see how it looks. The load went fine, so now I tried to save it, and I noticed that my save ...
0
votes
1answer
21 views

How to Change a div from an ACE Editor back to a div

I know that you can turn a div into an ACE editor like so: var editor = ace.edit("editor"); How does one change this back into a normal div?
0
votes
0answers
31 views

Ace tabs not drawn

I hope I can make myself clear enough for you to understand. I'm trying to integrate ace into my site. The only problem is, if I use the tab key, the text won't relocate. Also, if I click inside to ...
1
vote
0answers
40 views

dual syntax highlighting in ACE

I'd like to enable syntax highlighting of JS within a python script using the ACE editor. Specifically, I'd like something like this: #python stuff... foo_dict = {} foo = """<script> var foo ...
1
vote
1answer
87 views

How to create hover error messages in Ace code editor

I am using an Ace editor to display code on a website. I would like to be able to highlight ranges of code and display an error message when they are hovered over, as shown in the picture. I'm not ...
0
votes
1answer
32 views

how to find which function is getting called?

I am trying to edit the ace editor. for e.g. when I type >, it automatically places a </element> after the > in the html mode. I found out from looking at the JS that it is this function ...
0
votes
1answer
20 views

How to manage alternate lines with 2 different styles in ace editor?

I want to create a note taking editor in ace. For e.g. i paste some spanish text in the editor. I then want to note down english words for some corresponding spanish words. I want these english words ...
0
votes
0answers
32 views

Is there a way to preserve line breaks and indentation in ACE Editor?

I am using ace editor to insert some code into a text area which is then inserted into our database. When we do an htmlentities() on the resulting code, it all appears in one line. We would like to ...
0
votes
1answer
49 views

How can I highlight multiple lines with Ace?

The old method mentioned in similar questions here is the following: var editor = ace.edit("editor"); var Range = ace.require('ace/range').Range; editor.setReadOnly(true); ...
0
votes
1answer
20 views

Ace editor trigger event using javascript

Is there anything like editor.getSession.trigger('change') the reason I want this is because the editor goes in and out of new, so when It comes back into view I need it to do its normal 'change' ...
1
vote
1answer
29 views

Does Ace have a mode for MySQL?

I've just embedded ace on my website; does it have a mode for MySQL? I see SQL, but nothing specific for MySQL.
1
vote
1answer
31 views

How do I attach a scroll event to Ace Editor?

I am using the Javascript Rich Text Editor, ACE Editor. I have managed to get most of what I need to do accomplished, but I need to attach a scroll event to the editor. How do I do that? The API says ...
0
votes
1answer
64 views

How to automatically pick a “mode” for Ace Editor, given a file extension

I'm working on a project that uses a java/scala backend (Lift, to be precise, though that shouldn't affect this question), and as part of the frontend we use Ace Editor. I've been googling for a while ...
0
votes
1answer
55 views

ace-editor get text between braces

How can ace-editor get the value of code which is between braces like: { "name":"Product", "properties": { "id": { ...
0
votes
0answers
60 views

ACE Editor line focus issue

I would like place some text in each line which is not div tag, and focus them by mouse click. by default, ace editor only focus mouse cursor inside of the text of line. I want focus on outside of ...
1
vote
1answer
52 views

GIT support for ACE online IDE

I have extended ACE - Code Editor for Web to support a language which we are developing. Now I want to add Git support or use GitHub APIs to the IDE which we built with ACE. I have looked into JGIT ...
1
vote
1answer
138 views

Can Ace Editor support multiple code editors in one page?

I'm looking to implement a web app that features "coding-competition"-styled interface with 2 different code editors in a single screen. One will be read only and the other will be active and would ...
1
vote
1answer
182 views

Loading a HTML file into ACE Editor PRE Tag

There is a (on the server) locally stored HTML file which i need to show to user and allow use to make changes to it and save it. (Something like template file editor in wordpress). For this I am ...
1
vote
1answer
127 views

ace editor cursor behaves incorrectly

i am using Ace editor in my project. css : #editor { position:absolute; top:0; left:0; width:100%; height:100%; background-color:white; } javascript : var editor = ace.edit("editor"); ...
0
votes
1answer
89 views

How do I implement drag and drop in the Ace editor?

I have an "ace editor" and a palette of thumbnail images. My customer would like to drag these thumbnails onto the editor and have some text inserted at the drop location, the url to a full-size image ...
0
votes
2answers
292 views

Can't get ace editor with ASP.NET hot towel spa template to work

I'm new to web development, so please have mercy :) I've created a new ASP.NET project with the hot towel template (http://nuget.org/packages/HotTowel/) and added <script ...
0
votes
1answer
234 views

Autocompletion for Ace Editor

OK, so here's the deal: I'm using Ace Editor The app the editor is integrated in, is written Objective-C/Cocoa I need AutoCompletion (for a given set of keywords) Now, here's the catch : I know ...
1
vote
2answers
74 views

Object functions not showing up with console.log

OK, I'm trying to show all functions/properties of an object (specifically of an Ace editor object), using console.log(editor) (or console.log(editor.getSession()) for that matter) via Chrome's ...
1
vote
1answer
38 views

Is there a way to hide the ruler in Ace Editor

Is there a way to hide the vertical ruler in Ace? I'd like to give my users the options to enable/disable it If possible
1
vote
0answers
99 views

Ace editor error in setting language mode and theme

I loaded ace via bower, and I can create an editor just fine. However, I can't seem to be able to set the theme and language mode. These are my include lines: ...
1
vote
1answer
58 views

Ace and IE: editable content cutting off at 2nd line of code

Edit SOLVED: Initially I got under the impression that Ace will be completely unusable due to editable code cutting off on 2nd line. So I thought 'let's not even load it in IE'. Turns our the bug was ...
2
votes
2answers
109 views

TypeScript declarations for the Ace text editor

I am looking for TypeScript declaration files (*.d.ts) for the Ace text editor. Google didn't find anything. Has anybody seen them?
1
vote
2answers
139 views

Ace Editor synchronous scrolling

I have two simultaneous Ace editor sessions running side-by-side, I'm trying to synchronize vertical scrolling of both editors. I found a simple jQuery method that works with normal Divs, but how can ...
0
votes
2answers
207 views

Disable Scrollbars in Ace Editor

I'd like to disable all scrollbars in Ace editor, or replace with something more stylish. Can this be done?
0
votes
0answers
132 views

ace editor with knockoutjs [closed]

-> I would like to integrate the CodeMirror JavaScript editor into KnockoutJS. -> Unfortunately, it seems I've reached my limits on Javascript so I'm turning to JavaScript Sith Masters here. -> The ...
1
vote
1answer
79 views

Hide tab markers in Ace editor

Ace editor shows tab markers. Tabs are marked by dots. Is there a way to hide them? Here is the code I'm using to load the editor: var themeCssAceEditor = ace.edit("themeCssAceEditor"); ...
1
vote
1answer
224 views

how do I disable auto indenting and code completion in ace editor

When you type <div> and press enter on the standard ace editor (in html mode) it automatically creates a closing div tag and indents the cursor. You can see it here. They have disabled it for ...
0
votes
1answer
183 views

Using Ace editor in Windows Store Javascript app

So I'm trying to embed ACE in a Windows 8 JavaScript app that I'm working on and I've run into a bunch of troubles. Here is my code used to turn my <pre id="ace-editor"> element into an Ace ...
0
votes
1answer
109 views

How to make Ace editor expand fully vertically

I would like to disable the vertical scrollbar in the Ace editor and to make the editor expand to the size of the document (hence not needing the scrollbar). How could this be done? I am assuming the ...
0
votes
1answer
168 views

Which is the basic structure of a code syntax error detection using javascript?

I am designing a language, and I would like to enhance the user experience with a rich code editor. First I tough in CodeMirror, but then I found ACE Editor, which is open source too :) I have read ...
0
votes
1answer
124 views

How to set the source path in Ace editor

I am embedding Ace locally offline and so am not using the hosted package and am subject to the same origin policy. How do you tell ace to look in a particular folder for it's source of modes, themes ...
0
votes
2answers
278 views

keydown event not fired on ace editor

The ace editor prevent keydown events from being fired. I think it preventDefault. How can i remove this prevention or bind to keydown event before the editor event is executed ?
1
vote
1answer
76 views

ACE editor count number of characters?

This is how I am getting the total number of lines in ACE editor... editor.getSession().on('change', function(){ var lines = editor.session.getLength(); $('#lines').empty().append(lines); }); ...
0
votes
0answers
127 views

put div on top of ace editor

I am using an ace editor instance in my webpage: <div class="tabpage" id="tabscontent"> <div class="ace_page" id="tabpage_1"> </div> </div> and my javascript ...
2
votes
3answers
124 views

Jquery replace html, only where changed

I am cloning a realtime markdown editor, dillinger.io, but in unlike in dillinger when you have embedded a video in the document, but I dont want the video to refresh and flash every time the document ...
0
votes
0answers
127 views

How do I create a standalone mode extension for ACE?

I'd like to extend ace with a mode for a custom language. As far as I can tell, the general process is: Download the ace source. Create a new lib/ace/mode/foo.js for your custom language. run "make ...
2
votes
1answer
132 views

get token string for ace editor

I just looked at the kitchen sink demo and see that there is an option "Show token info" that shows up what type of text the mouse is over (variable, function etc.) I want to create something similar ...
1
vote
1answer
176 views

How to disable ACE Editor's Find Dialog

I would like to disable the ACE Editor's find dialog, which is invoked by pressing the Command + F key combination when the editor has focus. I've tried the following (among other things): ...
1
vote
0answers
89 views

Re-initializing ACE editor after navigating away

I am using the ACE editor for a web application built with Bootstrap. It hasn't been easy but I've gotten ACE to load within this framework using an iframe that loads the editor and populates it with ...

1 2