ide

How do I successfully use VIM as an external editor for Code::Blocks?

Hi, I really like Code::Blocks for its build system and step through debugging abilities - ie I really enjoy using wrappers to gcc/gdb more than using them from Makefiles or the command line. The problem is, I'm so brain damaged (or spoilt, some might say) by years of VIM use that I cannot edit in a standard Windows text editor. So, I ...

Step through Ruby code at runtime on OS X

I would like to step through Ruby code at runtime, but it seems difficult to find a decent Ruby IDE for OS X which allows you to do this. I would prefer one which uses the native look and feel of the OS (Cocoa). Can anyone make a suggestion? The main feature I am looking for is the ability to step through the code, not really much else...

What IronPython IDE should I use?

This question probably looks a lot like IDE for ironpython on windows question here on stackoverflow. But I read the answers on that question I still have no idea what IDE I should use. What I'm looking for is to know pros and cons of a specific IDE. I recently started learning IronPython. The only IDE I used so far is IronPython Stu...

Where can i download a free c++ ide with working code completion?

I was wondering where I can download a c++ compiler with code completion that doesn't suck like the back-end of a donkey. I have tried Eclipse, but that could not find code that had a space in the path (which means the entire concept is kinda unless), I tried codeblocks, which has a limited form of code completion that can only list the ...

IronPython studio cannot change default font colors.

I cannot figure out how to change the default colors in Visual Studio for python files. I have a dark gray background color and black Python code doesn't look very good on that background. I looked in Environment->Fonts and Colors in Option dialog but couldn't find the option to change IronPython colors. This question was a sub question...

Komodo Edit - code-completion for Django?

I've been using Komodo Edit for a small project in Django. The code completion features seem to work pretty well for standard python modules, however, it doesn't know anything about Django modules. Is there any way to configure Komodo Edit to use Django modules for autocomplete as well? ...

scite editor and gcc setting up?.

Hey there, In class we're using the Scite editor with gcc and its a tad outdated. I was wondering how you would "attach"(For lack of a better term) gcc to scite so that it would compile the code when I hit the compile icon?. Also would this process be the same when using other text editors like notepad++. -cheers. ...

How can I make Netbeans 6.7 recognize JSF tags in facelets?

I would like to upgrade from Netbeans 6.5 to Netbeans 6.7. However, I've encountered an annoyance. Netbeans 6.5 recognizes jsf tags, but Netbeans 6.7 does not. Here are the screenshots: Why isn't Netbeans 6.7.1 not recognizing and matching JSF tags? ...

Why use Intellij, or what to do during the evaluation

I downloaded IntelliJ IDEA and started with the 30 day evaluation. Now I'm just wondering, why should I use IntelliJ for plain old java developement (so no Hibernate, JSP, etc)? It doesn't look that different from eclipse or NetBeans, so I hope some IntelliJ guru can give some examples of things IntelliJ can do to justify investing the ...

how can I find a referenced Javascript method in a big website?

suppose I look at a webpage and I see something like: MysteriousClass mc = new MysteriousClass(); mc.CallMysteriousMethod() Now, the problem is that there are a zillion javascript files included into this page, and how am I supposed to find the one file that contains definition of this MysteriousClass? I know that this could be dealt wi...

How to configure line wrapping for imports in eclipse

The eclipse and checkstyle guys of you will surely now this problem: After organizing imports in eclipse with CTRL-SHIFT-o, each import will be on a separate line, without line-wraps. If you configured checkstyle to warn if you have lines greater than 80 characters, it will probably warn about your imports. Normally I insert newlines at...

Best IDE / TextEditor for R

Duplicate Recommendations for Windows text editor for R Which IDE for R in Linux? Which IDE or TextEditor do you use to write R code? ...

Debugging matchit plugin in vim (under Cygwin)

The "matchit" plugin for vim is supposed to allow you to use the % key to jump between matching start/end tags when editing HTML, as well as /* and */ comment delimiters when editing other kinds of code. I've followed the exact instructions in ":help matchit", but % still doesn't work for me. It seems silly to ask "Why doesn't this wor...

Idea Live Template to Log Method Args

I would like to be able to create a live template in Jetbrain's Idea that will log the method's arguments. Let's call it "larg". It would work like: public void get(String one, String two) { larg<tab> to create public void get(String one, String two) { log.info("get: one = " + one + " two = " + two); I'm fine with getting t...

Are there any good and FREE PHP IDEs out there

Most of the good PHP IDEs i find are not free, so does anyone know of a good, yet free PHP IDE??? As in an IDE with features like auto completion debugging code formatting code highlighting database previewing etc ...

How can I download sources for particular Maven artifact in IDEA?

In Eclipse there is an opportunity to select a Maven artifact you have a dependency on and download sources or documentation only for it. Now I am struggling to find that functionality in IDEA. But seems to be it provides only opportunity to download sources for ALL dependencies. Or I am wrong? ...

User Boot Mode Programming on Renesas

I understand this is a specific question, but I haven't been able to find any clue even to the answer anywhere. I have a Renesas SH7211 microcontroller on a board, and I'd like to program its User Boot MAT. I'm using the HEW that Renesas provides, and E10A debugger(Also have FDT installed) I have the buttons to boot it up from that MAT...

How do I indent multiple lines at once in Notepad++?

In many text editors that are aimed at programmers, if the user has a selection that spans more than 1 line and presses the TAB key, those lines are indented by 1 TAB (or a number of spaces, depending on how the editor is configured). However, this does not seem to be the default behavior of Notepad++. Is there a way I can do this in No...

IDE to create DIV based web pages?

Is there any IDE that I can create DIV and CSS based webpages in GUI mode? Like we have Dreamweaver. ...

Eclipse, is there a reason to chose it over emacs or vi?

As an old fart who has settled into using emacs whenever I can, I hear about Eclipse every so often. Is there any real reason to use Eclipse and give up all the knowledge of emacs and packages, plus the macros I wrote for it? ...