code-completion

Is there an extension for jQuery code-completion in Coda?

Hello, Do you know if there is a plugin for Coda to do the kind of code completion below for jquery? As far as i know there is such extension for Visual Studio, hope there is a way to do that in Coda too, because i don't want to write jQuery(document).ready(function(){ ... }); anymore. Thanks, Sinan. P.S. I'm aware of shorthands of do...

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? ...

Is there a MATLAB editor/plugin/version with better code completion?

Comparing Visual Studio code completion with MATLAB R2008b 7.7 there are a few important features missing in the last one: Local variables completion Function, for, if auto ENDing But Visual Studio doesn't support MATLAB code. Is there any MATLAB plugin, editor or version with a better code completion? ...

Faster multi-file keyword completion in Vim?

While searching for my python completion nirvana in vim, I have come to really love <C-x> <C-i>: "keywords in the current and included files". This almost always gets me a long nasty name from another module completed, which is great. (Omni-completion is obviously better when it works, but too often it reports it can't find any matches....

Given an XSD is it possible to list a hierarchy of elements and their attributes?

Lets pretend I have an XSD document and I want to produce a list of all elements along with their attributes and the children of the elements. I could also approach this by asking if you are to implement code completion based on an xsd document, and you want to list the children of the element and an elements attributes, how would you a...

NetBeans code completion shows the old names of classes that were renamed

In NetBeans 6.7.1, I had a Java project in which I renamed some classes. After renaming them, the code completion showed the old names of the classes and not the new names. When I would build a project that depended on this project, I noticed it would even create the .class files for the old classes. If I deleted the renamed classes and ...

C++ IDE that supports Scott Meyer's advice: Prefer non-member non-friend functions over members

Scott Meyer's argument that non-member functions increase encapsulation and allow for more elegant design (designwise) seems very valid to me. See here: Article Yet I have problems with this. (And seemingly others too, especially Library developers, who usually completely ignore this) Code usually looks better and more logical when I u...

PHP IDE with best code completion?

Despite what some might say, I believe that code completion (aka Intellisense) is the second best invention when it comes to code editors (the first being syntax coloring). It really makes coding easier because I don't have to worry whether I named the function CalculateReportSums, ReportSumsCalculate or simply GetReportSums. Unfortunat...

QuickText (Notepad++) plugin for Eclipse

Is there a QuickText like (Tab Trigger) plugin for Eclipse? ...

Code completion in CounterClockWise?

Hi, I am a first-time user of CounterClockWise, the Eclipse plugin for Clojure, and it appears that code completion just won't work. I keep wondering whether the problem lies between my keyboard and my chair, but can't find a solution. I just installed CCW on Galileo build 20090920-1017 and MacOSX. Then I try to write some lines of cloj...

Trick code completion with PyDev like with PDT?

Is there a way to help PyDev code completion by telling it the type of a variable? With PDT, you can use PHPDoc-like syntax for such purpose: /* @var $my_var MyClass */ $my_var = myFunction(); // PDT is able to figure out that $my_var is a MyClass object. But till now, I cannot figure out how to do the same in python. ...

Netbeans C/C++ JavaDoc code-completion

Hello, I am developing C++ in NetBeans 6.7.1. When I press CTRL + space for autocomplete there is shown only method's signature. I am using JavaDoc for commenting my code but NetBeans doesn't show it. I have installed Doxygen plugin but it is only for generating complete documentation. Is there any way how to force the IDE to show sign...

Making sense out of Emacs completion mode choices.

There appears to be many alternative Emacs auto completion mechanisms. Without an exhaustive search, the following come to mind: ido, auto-complete, icicles, in buffer completion, minibuffer completion and standard out of the box completion. And then there is code completion. Lots of it. And much of it language dependent. It would be...

struts2, code completion in jsp

Hi there, I have done some work with JSF(using netbeans as the IDE) and within your jsp/xhtml file you get code on beans/resource bundles that your have defined. ATM I am investigating struts2 and seem to be unable to get similar functionality in the IDE. Is this just the case with the IDE or do I need to define something? Thanks ...

Is there a way to disable or modify Xcode's code completion?

I have unchecked both "Show arguments in pop-up list" and "Insert argument placeholders for completions" in Xcode Code Sense preferences, but when I type "else" (for example) in the editor, Xcode still dumps in a pre-formatted "else" block. Is there a way to disable this feature entirely, or (better yet) to modify the block that Xcode i...

How to get auto-completion in Emacs to start completion automatically and on press of button.

I am using the auto-completion elisp for emacs. I am currently using it by pressing M-TAB but I would like it to also auto-complete after 4 characters. I use yasnippet as a source for auto-complete so if I set it to auto-complete after 4 characters it won't show completions like if, for, inc, main. If I set it to start auto-completion ...

Method Definition Not Found... automatic stub with Xcode?

I don't want to give up before asking, because this is basic functionality in any Java/.Net IDE. The compiler tells me: Incomplete implementation of class... Method definition for '-someMethod:' not found but clicking, right-clicking, praying and Google searching have not gotten me to automatically create a method stub from this. Can ...

Is there any way of getting Netbeans code completion to work with XPCOM components?

I'm writing a Firefox Addon in Netbeans 6.8. The Ctrl+space code completion for my own code or native javascript elements is very useful, but is there any way of making it aware of XPCOM (eg so that code completion would suggest the methods of nsIHttpChannel in the following code)? /** * @param {nsIHttpChannel} cSubject */ captur...

Why Netbeans stop completing my php code?

It seems that Netbeans don't know about functions like mysql_query and complete only globals like $_SESSION or $_POST and stuff like echo and print (don't know about print_r)... Screenshot: http://img163.imageshack.us/img163/4290/clipboard03vr.png ...

Getting PDT code completion to recognise runtime return types from base class?

Hi guys, I've got an abstract base class: abstract class BaseClass { /** * @return CLASSNAME */ public function fluent() { // do stuff return $this; } } Generally, i would put BaseClass where CLASSNAME is and all would be fine, PDT would pick up the phpdoc return type and happily autocomplete. Until, that is, I s...