CodeMirror is an in-browser code editor, written in JavaScript. Among its notable features are syntax-highlighting, code-completion, auto-formatting and key-binding. The code-assist and highlighting capabilities are written as plugins called 'modes', and the editor supports many languages out of the ...

learn more… | top users | synonyms

-1
votes
0answers
18 views

Creating special characters modules for CodeMirror

How can I create a CodeMirror addon for filtering out special characters in a text area? I've cloned the codemirror project and tried playing with "trailingspaces" example but it's getting me ...
0
votes
0answers
13 views

CodeMirror TO GWT wrapper inside window issue

I have been trying to get my Textarea syntax highlighted for a couple of days now. And I am using Google Web Toolkit. So I have ended up trying out http://code.google.com/p/codemirror2-gwt/, and been ...
0
votes
0answers
11 views

CodeMirror custom styling through 'getWrapperElement()' not working in firefox

I am using codemirror 3, and i have 2 instances of it in my page. Both the instances require separate font styles, so i am applying them through this code - task_name_editor = new ...
0
votes
0answers
15 views

Codemirror content not visible in bootstrap modal until it is clicked

I am using codemirror 3 with bootstrap. In my bootstrap modal, there is a textarea, and i am replacing it with codemirror. I am using task_name_editor.setValue('initial value') to initialise ...
0
votes
0answers
34 views

CodeMirror and GWT

I've gotten a task to make a Textarea syntax highlighted and to have the autofill method implemented. My Textarea will consist of XML markup and I am using gwt and smartgwt. So, what I have done so ...
1
vote
1answer
15 views

CodeMirror 3.x — Is there an event that fires each time the linter completes?

Background I'm currently using CodeMirror 3.13 I have multiple editors on a page (probably not significant) The Ask I want to count the number and type of linting errors and display a summary ...
0
votes
1answer
12 views

CodeMirror : Start and end line numbers of the rendered DOM

As far as i know, codemirror renders only few lines into the DOM, if a file has lots of lines. Is there any variable or function that could give me start and end line numbers in the rendered DOM? ...
0
votes
1answer
26 views

codemirror 3.0 format preloaded textarea code

I am using CodeMirror to create an editor in an HTML5 based presentation. In it's simplest form, the html looks something like this. <section class="pattern"> <textarea ...
1
vote
1answer
150 views

Creating a DOM element with jQuery - does not implement “node”?

I'm currently implementing CodeMirror and I'm trying to use the addLineWidget function. It's second parameter takes a DOM Node, so I thought to construct it with jQuery like this: var widget = ...
0
votes
1answer
40 views

Codemirror comment.js addon won't uncomment in Ruby mode

I'm using codemirror in Ruby mode, with the following includes: <link rel="stylesheet" href="/codemirror/lib/codemirror.css"> <link rel="stylesheet" href="/codemirror/theme/ambiance.css"> ...
0
votes
1answer
41 views

Writing <code> snippets with TinyMCE Editor and render using CodeMirror code highlighter

Please have a look at the following URL http://sribasu.com/blog/2_programming-tutorials/5_getting-value-of-radio-button-and-checkbox-using-jquery-cross-browser.html (fortunately I managed to show the ...
0
votes
0answers
38 views

Delete does not work in CodeMirror, delete the character on the right not on the left

I am developing an WebWorks app that takes adventage of CodeMirror syntax highlighting. Unfortunaly after pressing the backspace button the app does not remove the character on left, but the one on ...
0
votes
0answers
64 views

CodeMirror TextArea not rendering as expected

I am using CodeMirror in my application to allow code editing. I have the following page code: @model Tarantula.Models.NewDiscussionModel @{ ViewBag.Title = "Index"; } <link ...
0
votes
1answer
56 views

CodeMirror - Using RegEx with overlay

I can't seem to find an example of anyone using RegEx matches to create an overlay in CodeMirror. The Moustaches example matching one thing at a time seems simple enough, but in the API, it says that ...
0
votes
0answers
47 views

cursor falling behind the text on CodeMirror

I am using CodeMirror on my website, and encounter the following problem: Whenever i write anything into the code editor, the insertion point cursor (the blinking line) stays behind the text and acts ...
1
vote
2answers
47 views

How to reset Codemirror editor?

I would like to reset all the contents of the Codemirror editor. Ideally, this should clear the textarea, remove all marks and clear the history. What's the best way to achieve this?
0
votes
0answers
126 views

Using code mirror to highlight text in php/html code

I am trying to make use of Code Mirror http://codemirror.net/doc/manual.html Syntax highlighter . I have tried to implement their example and i can't get it right.I am new to js so having difficulty ...
2
votes
1answer
44 views

Codemirror javascript indentation issue

I am using Codemirror editor with javascript mode Javascript mode indentation works fine except at one place. When I hit enter when a cursor is before a closing bracket, indentation does not work. ...
0
votes
1answer
33 views

CodeMirror: make atomic range of token

I'm implementing CodeMirror to use as an editor for special files that require some syntax highlighting. I wrote my own parser for it, but now I face the following problem: there is a specific kind of ...
1
vote
2answers
57 views

How to save and restore content with markers?

I have a CodeMirror instance that has some content/text and some markers to highlight certain regions. I would like to save all the content including the markers to some backend service. I would then ...
0
votes
0answers
28 views

Drop down list does not work before text

I have converted my textarea into a codemirror editor. When I hit ctrl-space, I open an html select element at the current cursor position to allow user to select item from the select element and ...
1
vote
0answers
47 views

Codemirror not compatible with Jquery Autocomplete

I want to use Jquery Autocomplete for my codemirror editor. But Looks like its not compatible with it. I have following code working to display the list of options inside a textarea when the user ...
0
votes
0answers
63 views

Codemirror and Python, loading code from text area

so I have a problem when loading a string to the Codemirror textArea. If the string is only on a line all goes well, but the strings I have are almost all on more than one line, here is an example: ...
1
vote
1answer
52 views

CodeMirror: Catching Enter Key prevents line breaks

I used the extraKeys-option of CodeMirror 3.12 to detect when the user starts a new line: extraKeys: { "Enter": onNewLine } onNewLine() does nothing but a console.log(). Now CodeMirror ignores ...
0
votes
1answer
20 views

CodeMirror force next line from 80 position

Is there a way that I can force line break when user tries to type any character after column 80 for a document in code mirror. Also optionally for indent on the next line
0
votes
0answers
26 views

Codemirror Javascript mode cursor movement does not work in IE

I have Codemirror editor in my JSP. It works gr8 in FireFox. But in Internet Explorer the cursor movements are not appropriate when I type or enter . var placeCodeMirror = function(textareaEle) { ...
2
votes
1answer
65 views

Using an asynchronous warning source for CodeMirror's lint feature

The examples only show how to implement the JSON and Javascript lint addons with CodeMirror (syntax-highlighting Javascript-based editor), which are synchronous. Unfortunately, there aren't ...
0
votes
0answers
21 views

Is there a Codemirror js library for x-path

I want to create a Codemirror editor for X-Path mode Is there a way to do so?
0
votes
0answers
33 views

Can I use content assist with Codemirror editor

I am using codemirror editor. Can I use following content assist with it? http://wiki.eclipse.org/index.php?title=FAQ_How_do_I_add_Content_Assist_to_my_editor%3F&action=edit If yes then please ...
0
votes
1answer
56 views

newline characters in CodeMirror

I'm writing a context-free parser for CodeMirror that parses code one character at a time, and outputs a style based on the state transition taken. The code uses the line-break character \n to trigger ...
0
votes
1answer
39 views

Is it possible to highlight a search pattern when codemirror loads

Is there a way for codemirror to highlight the code matching a pattern (like if I use the search addon) when the page load? So I could load the page with ?search=my_pattern and pass the pattern to ...
0
votes
0answers
27 views

Codemirror:- How to use indent method form python.js

I saw that python.js has a method called indent(stream, state, type). can you tell me how do I use this method to apply indentation for python script? Especially I am not sure how do I prepare the ...
0
votes
1answer
147 views

How to apply auto indentation for CodeMirror editor?

I am using a common Codemirror editor for several languages (Groovy, Python, Beanshell, XSLT). Depending on the language selected in a drop down, I set the respective mode for the editor. How do I ...
0
votes
0answers
22 views

Insert empty token by Codemirror

I'am writing app where user can type an expression. The app highlights known words and defines the possible missing word in this expression. The app has to indicate place for missing word like empty ...
1
vote
0answers
29 views

CKEditor removing i tags [duplicate]

I have html content that uses the i tag for icons with font-awesome. <div class="service-icon"><i class="icon-exchange"></i></div> CKEditor is stripping these tags to: ...
0
votes
0answers
105 views

Can CodeMirror change the background color of a section of Code?

I have a programming language (called SPIN) that has a custom IDE that highlights the background of sections of code (marked by keywords at the beginning of a line), to help with visibility. (The ...
0
votes
2answers
67 views

Can CodeMirror show Markdown line breaks?

Can CodeMirror in Markdown mode be told to show line breaks? Example: Here follows a Markdown line with 2 trailing spaces, which means "I want a newline here". And then another line with no trailing ...
0
votes
1answer
103 views

CodeMirror not updating textarea correctly

I have multiple instances of CodeMirror on my page inside a jquery-ui tab widget. I create these instances dynamically like so: //Returns a code mirror editor editor.create = function(id){ var ...
0
votes
0answers
56 views

Prevent the Default Event from happening with Codemirror's keymaps

I'm trying to figure out how to prevent the browser from displaying the save dialog with a ctrl-s or cmd-s event in Codemirror. I can get the extraKeys to work, I just can't get it to avoid calling ...
0
votes
1answer
134 views

Use custom function to create elements in d3.js

I want to use d3.js to interact with marked text in CodeMirror. However, to mark text in CodeMirror, you call markText(from,to, {class: 'my-class'}) and it creates a span around the text with class ...
1
vote
1answer
66 views

How to capture CodeMirror hide/unhide events?

I want to capture events when markers are removed or when the remove is undone. The docs say there are "hide" and "unhide" events but I can't figure out how to capture these events. Can anyone provide ...
0
votes
0answers
37 views

How do i embedd codemirror in drupal? [closed]

I am creating a website that hosts jquery plugin and one of the sections is dedicated to documentations. In this sections I intend to provide html codes to help with the implementation process. I was ...
1
vote
0answers
159 views

Codemirror (AjaXplorer/Linux Webserver): ANSI-files with special characters

I have a AjaXplorer installation on a Linux Webserver. One of the plugins of AjaXplorer is Codemirror - to view and edit text files. Now I have the following situation: If I create a txt-File on ...
1
vote
1answer
85 views

Codemirror tabs to spaces

I'm using Codemirror in an app. Has anyone found a way to make it uses spaces when using tab? When I press enter to go to a new line it uses spaces. However, if I backspace to the beginning of the ...
1
vote
1answer
147 views

Using Codemirror in Vim Mode

I am having a little trouble making this thing up. I want to use Codemirror edit feature in Vim mode only, without any syntax highlighting. That is, if I click in the text area, it is converted in a ...
2
votes
1answer
124 views

CodeMirror onBlur event and console.log()

From what I've read about CodeMirror I should have onBlur written to my Console Log when I Blur the textarea. Nothing gets echo'd. var textarea = document.getElementById('block'); var editor = ...
1
vote
0answers
96 views

CSS to change the border style of a span depending on whether it's in the first LINE of it's parent block element

Prologue I have a layout that looks somewhat like this: Here it is on "JSFiddle". The DIV that it's all about, looks like this and is displayed below a line of text: <div class="container"> ...
1
vote
1answer
82 views

CodeMirror with Zen Coding not working

I'm trying to get Zen Coding working for CodeMirror (for a project already using CodeMirror successfully). Following the demo, I'm initializing the CodeMirror instance like so: var myCodeMirror = ...
0
votes
1answer
78 views

Using Codemirror in a page with ContentEditable

I am creating a page which embeds a codemirror instance and has a contenteditable section on the page. My motive is to show the html code of the contentEditable section inside the codemirror editor ...
1
vote
1answer
44 views

Different CSS rules for different languages/modes (CodeMirroe)

Is there a possibility to make CodeMirror highlight different languages in multi-mode differently? I want such classes to apply: .cm-s-default .cm-string-html {color: blue;} .cm-s-default .cm-string ...

1 2 3 4