Questions tagged [code-completion]

Refers to an IDE or editor feature that attempts to predict what you will type next based on context, speeding up code entry.

Code completion is a form of used by s or code oriented editors showing possible completions to a partially written code.

Common elements in many implementations:

  • Related keyboard shortcuts to simplify usage (invocation, choice selection)
  • Flexible configuration to:
    • Enable/disable the feature
    • Change response time
    • Associated shortcuts

Example: Netbeans guide has a Smart Code Completion section with pictures that show a common way used to implement this feature.

802 questions
0
votes
0 answers

Autocomplete of composite component attributes in STS

I have created some composite components in my JSF project in STS 3.1.0. When I declare them in the view like this: xmlns:asw="http://java.sun.com/jsf/composite/asw-tags then everything works fine, but I don't have any code completion for…
0
votes
3 answers

Vim code-completion and cryptic message on the bottom

Each time when I start vim I get the following cryptic text on the bottom on that picture below: I installed all plugins in the following way #VIM sudo equo install setuptools ctags ipython rope ropemode easy_install…
user977828
  • 7,259
  • 16
  • 66
  • 117
0
votes
4 answers

Python Interpreter Code Completion

Possible Duplicate: How do I add tab completion to the Python shell? Is there an easy way to add code completion feature to a Python interpreter that is started on a unix console?
Faruk Sahin
  • 8,406
  • 5
  • 28
  • 34
0
votes
0 answers

Create custom code completion for eclipse's HTML Editor

I would like to add some custom results in the code completion pop up in the HTML editor of eclipse (plugin org.eclipse.wst.html.ui) but in the plugin.xml file of the jar I only found one extension point which it seems to be deprecated as there is…
C.LS
  • 1,319
  • 2
  • 17
  • 35
0
votes
1 answer

jsdoc for commonjs require

I use webstorm ide with nodejs. When I create modules and require them, I don't have code completion. For example: test.js /** @module test*/ module.exports = { run: function () {} }; main.js var test = require(__dirname+"/test.js"); test.…
inf3rno
  • 24,976
  • 11
  • 115
  • 197
0
votes
1 answer

namespaces in javascript with code completion / content assist support in IDE's

What is the best way to / How can I get Eclipse to give content assist/completion in a large javascript application. We are developing a large application with HTML/javascript in the front end. We want to awoid cluttering up the javascript…
Henrik
  • 21
  • 4
0
votes
1 answer

How to activate ABAP editor code completion

I have the keyword code completion, but not the variable name, table fields, class methods one. I want those things too, and i heard it's possible. Does that require some additional tool, or is it a matter of configuration? Thx, you guys rule! P.S.…
vlad-ardelean
  • 7,480
  • 15
  • 80
  • 124
0
votes
1 answer

Code Completion in Eclipse CDT using FreeType2

I'm currently programming a C++ Project which uses Freetype2 in Eclipse CDT. I like the automatic header parsing and code completion of Eclipse. However Eclipse fails to parse the standard FreeType2 include code: #include #include…
Lukas Schmelzeisen
  • 2,934
  • 4
  • 24
  • 30
0
votes
1 answer

Netbeans PHP (Mac OSX) doesn't include full PHP Code Completion?

I have just downloaded the Netbeans with PHP Bundle but when i run it, there is NO fully php code completion. For very basic examples: mysql_fetch_array substr explode It doesn't come up even with this basic funcions/methods/etc code completion…
夏期劇場
  • 17,821
  • 44
  • 135
  • 217
0
votes
2 answers

eclipse java editor method proposal

I recently had to work on a visual basic project. For this task I used Visual Studio 2010 and noticed I slight difference how method are proposed for code completion. If you hit CRTL+Space and start typing, all methods are suggested that contain the…
kon
  • 3,732
  • 3
  • 26
  • 34
-1
votes
1 answer

enable netbeans 7.1 SQL code completion

How do I enable SQL code completion in netbeans 7.1? I used to be able to do it in 7.0.
UserX
  • 1,228
  • 2
  • 15
  • 28
-1
votes
1 answer

Code Completion not working properly in DataSpell?

I have included three images highlighting the issue I've encountered with code completion in Dataspell. The image below shows how an instance of Jupyter running in a browser deals with code completion. In the example below, you can see that for an…
Urizen
  • 2,331
  • 6
  • 23
  • 33
-1
votes
1 answer

VS Code JavaScript Intellisense is very slow on windows 10, but fast on Windows 11

I have a react project using JavaScript files in which the Intellisense code completion suggestions are extremely slow when using Visual Studio Code in Windows 10. It takes 7 seconds to get a code completion suggestion. However, when I open the same…
-1
votes
1 answer

How can I see "all" constructors on AppCode by code completion?

I am new to ios development and studying SwiftUI. xCode shows more than 5 constructors of Button. AppCode shows only 2 constructors of Button. xCode (many constructors) AppCode (only 2 constructors) developer document. there exists the…
wonpyohong
  • 344
  • 4
  • 7
-1
votes
2 answers

Is there a third party component that helps track down delphi missing files in project?

Most of the time finding missing file in project that has a central repository is very silly. It's something a computer could do much faster than me as a programmer. However I have no idea how to create this thing inside Delphi ide, since I don't…
none
  • 4,669
  • 14
  • 62
  • 102
1 2 3
53
54