Tagged Questions
The code-completion tag has no wiki summary.
78
votes
51answers
19k views
Is there an IDE that provides code completion for Python
I am quite fond of the Intellisense code completion baked into Microsoft Visual Studio. I find that I only type 2 to 4 characters of any given keyword which drasticaly speeds up my coding. Now that I ...
29
votes
2answers
2k views
How does code completion work?
Lots of editors and IDEs have code completion. Some of them are very "intelligent" others are not really. I am interested in the more intelligent type. For example I have seen IDEs that only offer a ...
22
votes
2answers
494 views
Can I customize automatic event handler generation in Visual Studio?
When you subscribe to an event in code, Visual Studio automatically completes the code after += and generates the appropriate event handler:
button.Click += new EventHandler(button_Click);
// ...
19
votes
24answers
7k views
What is a good Linux IDE for code completion?
So far for C++ Linux development, I've used Eclipse CDT and Code::Blocks. Compared to Visual Studio on Windows, their code completion features aren't too great. Could someone please suggest an IDE ...
16
votes
8answers
4k views
Has anyone found a good set of python plugins for vim — specifically module completion?
I'm looking for a suite of plugins that can help me finally switch over to vim full-time.
Right now I'm using Komodo with some good success, but their vim bindings have enough little errors that I'm ...
14
votes
7answers
9k views
13
votes
4answers
961 views
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 ...
11
votes
1answer
3k views
Can't disable method parenthesis auto-complete in Eclipse
I'm trying to disable the automatic closing of brackets in Eclipse, and while I've mostly succeeded, I can't stop the editor from inserting a closing parenthesis for a method call. The result is that ...
11
votes
11answers
3k views
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 ...
10
votes
5answers
5k views
NetBeans PHP code completion
Rrecently I started using NetBeans 6.7 beta for PHP development instead of Textmate and MacGDBp. I am rather amazed with it's feature set and most everything worked out of the box, or was easily ...
9
votes
1answer
456 views
How can I tell PyCharm what type a parameter is expected to be?
When it comes to constructors, and assignments, and method calls, the PyCharm IDE is pretty good at analyzing my source code and figuring out what type each variable should be. I like it when it's ...
9
votes
2answers
2k views
Ctrl+Space for omni and keyword completion in vim
I Want to use Ctrl+Space for omni-completion (and keyword completion if there is no omni-completion) in vim. I've tried this which I found somewhere on the web:
inoremap <expr> <c-space> ...
8
votes
3answers
829 views
Browser based IDE - Textarea with code completion available?
Recently I discovered it's possible to have syntax-highlighting in a <textarea> using JavaScript.
Are there Open Source libraries which also support auto completion?
I'd like to make a simple ...
8
votes
0answers
1k views
How do I enable jQuery intellisense in Eclipse and/or Aptana [closed]
Possible Duplicate:
Aptana Plugin for Eclipse and jQuery code assist
I've got Eclipse running with the Aptana addon and would like to have jQuery intellisense/code-complete, e.g. I would ...
8
votes
3answers
4k views
How to disable Notepad++'s annoying 'parenthesis completion'?
Whenever I type a (, [, or {, Notepad++ completes it with the corresponding closing bracket. I find this 'feature' annoying and would like to disable it. It doesn't seem to be listed in the ...
7
votes
2answers
123 views
How to build robust data apis in clojure
Hi guys : I find that my clojure apps get structurally coupled very rapidly due to the lack of a data API...- I have maps with keys that have names which, if mistyped , cause exceptions to be thrown ...
7
votes
1answer
4k views
Is there an extension for jQuery code-completion in Coda?
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, ...
6
votes
1answer
336 views
Pydev Code Completion for everything
In many cases (such as function parameters) Pydev doesn't statically know the type of a variable. Therefore code completion (after . or when using ctrl+space) doesn't work.
In most cases, you know ...
6
votes
1answer
74 views
Relationship between parsing, highlighting and completion
For some time now I've been thinking about designing a small toy language from scratch, nothing that will "Rule The World", but mostly as an exercise. I realize there is a lot to learn in order to ...
6
votes
2answers
1k views
gccsense vs. clang_complete
I've been using omniCppComplete + ctags for a while, and want to make a further improvement on the code completion.
According to the suggestion in here [1], gccsense and clang_complete seems to be ...
6
votes
1answer
2k views
Is there an Eclipse C# Highlight, Code Completion plugin
I need an Eclipse 3 plugin for C# syntax highlight and hopefully code completion.
I am running both Mac and Windows versions of Eclipse.
I have evaluated "Improve C#" but it seems to be not working.
...
6
votes
1answer
3k views
Word / Code Completion in VIM
I know that I can get word completion through CTRL+N & CTRL+P and code completion through omnifunc with CTRL+X CTRL+O. I additionally tried Supertab (very nice), because I'm used to ...
5
votes
1answer
251 views
Eclipse Galileo supports javascript cross-file code completion, but Eclipse Helios does not?
When editing multiple javascript files, each of which are supposed to be available in the global scope because - for example - they will each be loaded in the same html document, Galileo supported ...
5
votes
4answers
1k views
Any tutorial on how to use Clang for syntax highlighting and code completion?
I want to make a basic application with syntax highlighting and code completion powered by Clang. I know I can do this with the Clang libraries, but the documentation is so extensive that I don't know ...
5
votes
2answers
240 views
IDEA: “Assign statement to new local variable”?
As a long time Eclipse user, I'm playing around a little bit with IntelliJ IDEA 10. I can't seem to find out how to perform an "Assign statement to new local variable" code completion.
Feature ...
5
votes
6answers
530 views
Is it possible to auto-complete parentheses or quotation marks in emacs?
I've used XCode and Netbeans, and I've noticed that they have a feature to automatically complete quotation marks or parentheses (and I assume that other IDEs often do this also). I don't know what ...
5
votes
1answer
474 views
Vim: restricting methods shown by omnicomplete to those present in ctags
I'm editing a simple PHP file with a class which has a few methods, if $bar is an instance of this class and I type
$bar->ctrlxctrlo
I get a popup with a lot of methods (builtin ones) in addition ...
5
votes
3answers
1k views
Auto code completion in VIM?
Can VIM do auto code completion like what Eclipse does? Usually I connect to my Linux developing server through Putty from my Windows laptop. So, I hope I can find a plugin for VIM which can do ...
5
votes
1answer
361 views
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 ...
5
votes
3answers
3k views
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 ...
4
votes
2answers
144 views
internal code-completion in vim
There's a completion type that isn't listed in the vim help files (notably: insert.txt), but which I instinctively feel the need for rather often. Let's say I have the words "Awesome" and ...
4
votes
3answers
162 views
introspective code completion with VIM? … or other lightweight editor with this feature?
I've been all over the web trying to find a way to get VIM to have code completion similar to PyDev. It doesn't seem like it is possible!
-I have tried to use the omnicompletion suggested at this ...
4
votes
2answers
550 views
How to get Zend Framework view helper code completion in Eclipse (Aptana Studio 3)?
I am using Aptana Studio 3 (built on Eclipse) to edit my Zend Framework application. When I am editing a view script, I would like my IDE to provide code completion / auto-complete.
<?php echo ...
4
votes
1answer
539 views
using emacs CEDET completion for python
In default installation of cedet-1.0 completion can only track global scope symbols in current file. This is not much differs from built-in completion functions (dabbrev-expand or hippie-expand).
It ...
4
votes
1answer
1k views
How can I get intellisense in PHP/Eclipse on custom objects pulled out of array in foreach loop?
I have a collection of custom objects (Podcast) in an array.
When I use a foreach loop to iterate through this collection, I don't have code completion on the variable that contains the object pulled ...
4
votes
2answers
95 views
ide code information
I've been annoyed lately by the fact that PyDev doesn't information about classes and function when it code completes wxPython code.
Can anybody tell me FOSS IDE's or extensions that offer code ...
4
votes
1answer
663 views
Netbeans C/C++ JavaDoc code-completion
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 ...
4
votes
4answers
499 views
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 ...
4
votes
3answers
2k views
How to configure code completion for Django based projects in PyDev?
I am playing with a simple project based on Django framework. My IDE is PyDev/Eclipse.
I cannot make code completion work for Django code, but it works fine for standard Python libraries.
I tried to ...
3
votes
1answer
322 views
PhpStorm LESS CSS Code Completion
There is a LESS plug-in for PhpStorm
*.less files are indeed recognized, in that a little "LESS" icon appears next to the *.less files, but it appears that the "support" ends there. Code completion ...
3
votes
1answer
113 views
CFG / PEG used for Code completion?
I'm wondering if it's possible to use a CFG or PEG grammar as a basis for code completion directly without modification. I have heard that code completion is in IDE's is sometimes manipulated and ...
3
votes
1answer
265 views
emacs python code completion [closed]
Possible Duplicate:
Emacs - tab-completion of local Python variables
Ok I am getting very confused about this.
What I want is code completion for:
The current file (even all open ...
3
votes
1answer
447 views
How can I get PhpStorm to go to the right declaration
I have the following snippet of code.
abstract class MrParent {
public function __construct() {
$this->var = 'a';
}
}
class MrChild extends MrParent {
public function hello() {
echo ...
3
votes
2answers
234 views
R Syntax Auto-completion for Stat ET / Eclipse?
I just moved to Eclipse/StatET to code in R. My understanding is that syntax completions appears with Ctrl + Space and you should get some basic functions/argurments information. But
I get almost ...
3
votes
3answers
583 views
Emacs/TextMate code completion for Erlang?
ESense looks dead; what are your recommendations for Erlang code completion in Emacs? It doesn't have to be fancy (ESense built an index from the Erlang source); even something that just uses Erlang's ...
3
votes
3answers
383 views
How does Google Scribe work?
I'm asking about the new labs feature "Google Scribe." Here is the link: http://scribe.googlelabs.com/
I am interested in the backend and the frontend, but mainly the backend. I want to build ...
3
votes
2answers
249 views
Hippie Code Completion in IntelliJ IDEA?
In Netbeans, it's Ctrl + K that activate the hippie completion,
In Eclipse, it's Alt+/
What is it in IDEA?
Edit:
Hippie Completion is the kind of completion that doesn't require much information ...
3
votes
3answers
73 views
Are there IDEs in which the code-completion widget is not a linear list?
Most mainstream IDEs use code-completion in the form of a linear list of suggestions (typically methods).
Are there any IDEs (mainstream or not) or IDE plugins that use a non-linear widget, such as a ...
3
votes
3answers
160 views
IDE framework for a dynamic language?
Let's say I have a super-wonderful new programming language, and I want there to be an IDE for it. What IDE platform/framework could I use to get this done efficiently? I mean things like:
...
3
votes
1answer
295 views
Unable to incorporate Eclispe JDT codeAssist facilities outside a Plug-in
Using Eclipse jdt facilities, you can traverse the AST of java code snippets as follows:
ASTParser ASTparser = ASTParser.newParser(AST.JLS3);
ASTparser.setSource("package x;class X{}".toCharArray());
...