The code-editor tag has no wiki summary.
0
votes
2answers
43 views
Why is my vs2012 forcing extra parentheses
First, thank you for taking pity on me and reading this issue. I CANNOT for the life of me figure out what extension I might have installed that is causing this issue, but it is EXTREMELY cumbersome.
...
0
votes
1answer
19 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
0answers
12 views
How do I uninstall a language module in Textwrangler?
I'd like to remove the .m mapping for Objective-C in Textwrangler so that I may have the Matlab syntax highlighting support in the app. I read the users manual and searched online, and both point me ...
3
votes
1answer
51 views
Netbeans - copy highlighted regex search results
I made a simple regex search in Netbeans 7.3 on Windows (using Ctrl+F):
\{\{.*?\}\}
The results get highlighted correctly and the question is - how to extract highlighted text search results? Let ...
1
vote
1answer
143 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 ...
0
votes
1answer
41 views
Is there a macro recorder in Xamarin studio?
I can't find the keystroke macro recorder in Xamarin Studio, however it's an usefull feature for an IDE (to edit some aligned code lines for example). Where is it hidden ?
In the same order of idea, ...
3
votes
2answers
374 views
How to load ace editor
I am trying to use the Ace code editor library (http://ace.ajax.org/), but im having trouble. According to the embedding guide, this should load the required js files from Amazons CDN.
<script ...
0
votes
1answer
35 views
YACC code support? IDE, plugin, whatever?
I'm learning YACC and I like to learn new languages having an editor pointing out my errors live.
Any suggestion?
2
votes
4answers
386 views
Remove System.out statements from For Loops blocks only
Any way to remove them only from the for loop blocks in a file easily...
Before:
for( ... ) {
...
System.out.println("string");
...
System.out.println("string");
...
}
After:
for( ... ) {
...
...
1
vote
1answer
123 views
print line number in android multiline EditText
I'm creating a code editor in android. I want to print line number on the screen when each time user takes a new line. I'm using EditText for editor. Can any one help me out.Thank you in advance.
1
vote
0answers
66 views
HTML / CSS Editor with tabs on both sides
I have searched high and low but never found something like this, so I have to ask!
When I edit an HTML or CSS file (say index.html) I usually try to take advantage of other people's ideas (I am a ...
4
votes
1answer
754 views
Codepad/ideone style collaborative web IDE?
I'm looking for a simple collaborative web-based text-editor which can compile—and show output from—a few popular languages such as: C++, PHP and Python.
Research
Editors
Ace
EditArea (people ...
0
votes
2answers
47 views
Embeddable editor for scripting language
I'm looking for a good editor that is embeddable into application (using either QT or GTK toolkit if needed), and would allow editing of scripts with:
Code completion
Inline documentation / context ...
3
votes
1answer
203 views
codecast functionality like cssdeck
Recently codemirror project caught my attention. Jsbin uses codemirror behind the scenes.
After spending some time on that website, I found cssdeck. Inside cssdeck they are implementing a feature ...
0
votes
0answers
205 views
Sublime Text Syntax Highlighter Not working on Windows?
I have created a Sublime Text File for Syntax Highlighting which is mentioned below.Its for a new Language called Visage and the Syntax definition is taken from Groovy since most of the syntax looks ...
2
votes
1answer
731 views
Apply Twitter Bootstrap stylings to CodeMirror?
I have a form with a textarea where users can write some code. I'm replacing that textarea with a CodeMirror code editor box, so I want to apply Bootstrap stylings to it.
This is what the form looks ...
0
votes
2answers
131 views
Code-Editor Plugin
I'm looking to find some kind of plugin similar to this plugin stackoverflow uses to ask questions. Allowing the person who is asking the quesiton to customize his/her question with code, images, bold ...
2
votes
1answer
326 views
komodo edit 7.1 doesnt't recognize html5 tags in php mode
The title is pretty explicative! In php mode komodo edit assume html4 and raise errors when html5 tags like article, time, section are used.
This could be pretty troublesome since it could cover php ...
2
votes
1answer
337 views
Qt QTextEdit line numbers
I'm working on a code editor for GLSL in Qt and I'm having problems with showing the line numbers of a QTextEdit. I undestand the example from http://doc.trolltech.com/4.6/widgets-codeeditor.html but ...
1
vote
2answers
252 views
Visual Studio Breakpoint Bar Not Present
So I hit some weird combination of keystrokes, and now my visual studio looks all jacked up and I can't figure out how to customize it back to what it was. I've googled it lots, and I can't seem to ...
0
votes
3answers
159 views
Code-editor software for making Java programs
I'm not sure if I'm asking the question right...
So far I have been using Java Editor (JE) with the Java SDK for compiling the code. But writing the code in JE is like writing text in Notepad and it ...
3
votes
1answer
52 views
Is it ok to paste snippits of code eg from a browser window if git is set to have core.autocrlf false?
I am researching the best autocrlf setting for GIT and I am confused about what happens with code pasted into the editor if it is set to false. I notice many people recommend setting it to false, ...
2
votes
1answer
265 views
IntelliJ editor customisation: javadoc popup to behave like in NetBeans?
Yesterday I installed IntelliJ IDEA IDE and so far I like it (I used to use NetBeans which I like and Eclipse which I avoid).
When it comes to code editor I would like to change javadoc popup ...
1
vote
2answers
421 views
code editor for asp.net mvc razor
I want to put on my web site an editor like in stackoverflow. in particular code editing that is contained.
Is there any example you offer me. I m allready using ck editor. But it is not usefull for ...
11
votes
4answers
5k views
Any good text editor - Android app - optimised for programmers? [closed]
Are there any good Android apps - text editors, optimised for programmers?
I'm asking about an Android app which is an editor! I am not interested in editors running on a desktop/laptop computers ...
1
vote
1answer
277 views
Does Dreamweaver dotted lines to show code indentation?
Does Dreamweaver dotted lines to show code indentation like in this image?
1
vote
0answers
252 views
how to test php script locally through sublime 2 [closed]
i am absolute new to sublime text 2. Before using it, I mainly used adobe dreamweaver cs5. By setting dreamweaver to local server i easily tested my php scripts. In sublime, can I have this kind of ...
5
votes
2answers
163 views
Is there a way to host the c# code editor in a visual studio extension window
I'm working on a visual studio 2010 extension and was wondering on how to obtain an existing language service ( the one for C# specifically ). All the articles I've seen on the web so far are about ...
0
votes
2answers
135 views
Is there any editor out there that supports code hinting for LESS files?
Is there any editor out there that supports code hinting for LESS files?
0
votes
1answer
78 views
Adornement layer in Visual Studio 2010 editor randomly moves by scrolling
I am trying decorate code lines with various metrics collected during an execution of a program. In order to do that I use VS extensibility and adornments layer. However it seems to be somewhat ...
0
votes
3answers
89 views
troubling with find and replace function in files
I know that it is not a programming question ?
But i need a another help relating to find and replace function in php code editor. I am using eclipse and Dreamweaver and i have about 650 php files ...
1
vote
1answer
612 views
Android: Syntax Highlighting?
I am currently trying to write an application which invloves syntax highlighting codes. (HTML, XML, PHP, JavaScript, CSS and preferably more).
It has been going very well but I have come across a ...
0
votes
1answer
251 views
Visual Studio 2010 Code Editor Outlining Icons?
I've seen a lot of videos where the presenter has little icons next to their outlining in code as shown in the below screenshot:
I'm guessing this is a plugin as I can't find any info in the VS ...
13
votes
2answers
9k views
Delete to line number in Vi
How do I delete a block of text from the current cursor row to a given line number in vi?
For example:
49 <j:set var="changeSet" value="${build.changeSet}" /> <----- delete from here ...
3
votes
4answers
163 views
An text editor for aspx?
I have recently started developing in ASP.NET(C#/VB.NET) Web Forms. Apart from Notepad++ what other text editor is there for ASPX files?
I'm asking because Notepad++ gets rid of all the nice colours ...
0
votes
1answer
32 views
Saving a position while coding?
Back in olden times, I used to code with an editor that allowed you to mark where you were in the code with a keypress. You could jump to another point in the same or another file to check a ...
1
vote
0answers
27 views
What are the benefical tools that can make writing an answer in Stack Overflow faster and better? [closed]
Are there some tools that could help writing an answer (especially code snippets) for Stack Overflow in a much quicker time and with a better layout customized for Stack Overflow panel size?
(And ...
1
vote
1answer
505 views
IntelliJ: how to force editor to treat a file as javascript?
I'm creating a Grails app in IntelliJ 10 and have a javascript file that is created dynamically, as a Grails view.
For that reason the javascript file doesn't end in '.js'. It ends in '.gsp' because ...
1
vote
1answer
863 views
Auto-close HTML tags in Komodo Edit?
Is it possible to turn this on in version 6.1.1? I'm not seeing it...
1
vote
0answers
105 views
Break on Arbitrary Event in Visual Studio
I'm trying to trace some legacy code at work, Visual Studio 2003 and .Net 1.1. There are actions done on Keypress and Text change that I know happen but, the Text fields themselves are made ...
0
votes
1answer
781 views
Code editor control VB .NET
Does anyone know if the code editor used by VSTO IDE is available to use in my own projects?
I need to use a code editor in my project. I Googled to try to find one, but I found several third party ...
0
votes
1answer
84 views
Text editor or a standalone tool for Mac OS with ability to compress JavaScript code
Here is the task: I would like my JavaScript code from different files to be compressed and concatenated into one file that is going to be used on a web page. The problem is that I'm pretty lazy :) ...
2
votes
3answers
542 views
JavaScript code editor [closed]
I need to get JavaScript HTML/CSS/JavaScript code editor plugin (I prefer jQuery plugins) for my CMS. I don't need WYSIWYG editor. I need editor where you can see HTML/CSS/JavaScript. I was just ...
1
vote
1answer
60 views
Sensing the changes done in code
I've created a standalone java app using netbeans 6.9. In my app if a user selects some options(values for some specific fields) then my app automatically generates its corresponding code.That code is ...
1
vote
4answers
87 views
Is there a code editor that makes it possible to revert to a previous version?
I am coding in javascript a very big file and I keep wanting to go back to a previous version because of bugs I have created in the new version. Are there any code editors that allow you to revert to ...
3
votes
1answer
2k views
How to reset all keyboard shortcuts in notepad++?
I have removed the shortcut for SCI_DELETEBACK and as such my backspace key now outputs a backspace character rather than actually deleting characters.
For whatever reason, it's not possible to ...
0
votes
3answers
943 views
C++ code editor with class browsing and/or code completion other than VS
Do you know whether there is a good FREE C++ Source code editor other than Visual Studio ?
The only feataure I might really need are class browsing (jumping from a method call to a class ...
3
votes
2answers
612 views
Collaborative Code Editing
I work for a small web development company (6 people) and we've been in the market for a new code editor/development environment for quite some time.
Currently, we're using Dreamweaver's (CS3) ...
1
vote
2answers
76 views
VS2005: how to find text in the current function
In the VS2005 code-editor using C#, how do you search for text in the current function only? It allows searching over the Current Document but I cannot see how to limit the search to only the current ...
2
votes
2answers
431 views
Is there a shortcut to swap/reorder parameters in visual studio IDE?
I have a common issue when working with code in the IDE:
string.Concat("foo", "bar");
and I need to change it to:
string.Concat("bar", "foo");
Often I have several of these that need to be ...



