The code-editor tag has no wiki summary.
0
votes
0answers
5 views
JSP Code complete in web code editor (ACE/CodeMirror/Others)
Do any of the mature web code editors feature code complete of JSP/Java? I have side project where I am able to write code in an ACE (web/client-side editor) and execute it against my Java application ...
0
votes
2answers
15 views
CK editor destroy the style of the page even in Inline mode.. how to disable?
what i think to do for my cms is this
<script type=javascript...... src=ckeditor.js>
<div contentditable=true>
\all of Site code\
</div>
then submit it to database..
the ...
0
votes
2answers
31 views
The Best[Free] Code Editor With Code Corrector
I've done lot's of research, I've tried Google, Yahoo search, asked friends etc. I even posted a question on Yahoo. The best, free, coding tool I could find was Sublime Text. It has all I need except ...
0
votes
0answers
32 views
Code editor for use with R in Mac OS Xwith a flower dock icon
I'm looking for a code/text editor that I used to use with R -- it has a flower dock icon, and is free and available on Mac OS X. The default skin looks a lot like this TextMate one, but I know it's ...
0
votes
1answer
14 views
Komodo Edit 8 doesn't recognize Django tags for HTML5 pages
I am using Komodo Edit 8 for a Django project. HTML5 pages do not recognize django template tags for syntax highlighting or code intelligence. However, HTML pages do accurately recognize these tags. ...
-4
votes
2answers
32 views
Which IDE is developer friendly? [closed]
There are many many IDE for coding. From your experience please share which IDE is developer friendly?
Points to be noted about IDE
(number of * is proportional to that point's value)
** Is it ...
0
votes
2answers
49 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
32 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
22 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
61 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
2answers
250 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
46 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, ...
4
votes
2answers
832 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
47 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
397 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( ... ) {
...
...