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
1 answer

Oracle SqlDeveloper - order and size of column set in code completion window

I am currently using Oracle sql developer v4.0.3.16. When I do auto-complete of table columns, they show up in ascending order. I've got table with over 200 columns. Auto-completion window shows only 40 positions. When i choose last position '...' -…
0
votes
1 answer

PyDev custom code complete plug-in only detects every other key stroke

I have an Eclipse plug-in that I created to add Code Completion entries. I configured Eclipse to automatically show code completion as I type (Windows | Preferences | PyDev | Editor | Code Completion | Request completion on all letter chars and…
MrMobileMan
  • 152
  • 1
  • 8
0
votes
3 answers

Code Completion of Android Studio

When I use code completion of Android Studio,it always shows only default constructor of object, not constructor with attributes.How to show all constructor of object using code completion(ctrl+space)
MUMBUÇOĞLU
  • 251
  • 1
  • 8
  • 24
0
votes
1 answer

Code completion support for static imports in NRefactory

Does NRefactory's code completion support static imports? I'm using the latest version of NRefactory and I've not been able to get it to recognize static imports. e.g: using System.Console; Console.WriteLine(); //autocomplete for this WriteLine();…
Aa345asd
  • 1
  • 1
0
votes
2 answers

Vs 2013 Only plain text

Recently i opened up visual studio 2013, for coding some c++. I opened it before, and i didn't do any reboot in between. Now i opened my project, en the text editor showed no colours at all, all gray text, en there was no code completion. I can…
0
votes
0 answers

GNU Global do not see a variables

I am tried to get to work GNU Globals in my Emacs, and found that it is couldn't find a function definitions. After a long searching I end up that GNU Globals itself just somehow broken for me, it doesn't index almost anything! Consider an…
Hi-Angel
  • 4,933
  • 8
  • 63
  • 86
0
votes
1 answer

Node.js Code Assist in the Eclipse Debugger

Does anyone know how to get code-assist working while debugging (say for instance while forming a watch expression) Node.js in Eclipse? One of the motivations for my wanting to use Node.js on the server side was the idea that I could debug…
Code True
  • 636
  • 7
  • 18
0
votes
3 answers

IntelliJ Idea: code completion for creating method like in Eclipse

I am using Eclipse for about 5 years. Now I'm begging with IntelliJ Idea 13. I can not get used to code completion :-( How can I create new public method? In Eclipse i press: pub CTRL+SPACE ENTER int CTRL+SPACE test ENTER and get public int test()…
martin
  • 1,707
  • 6
  • 34
  • 62
0
votes
1 answer

Why Xcode code completion for core location classes is not working

I'm new to iOS and I'm trying to build a simple location base app. I have an issue with Xcode 6.1 (6A1046a) which is not showing CoreLocation classes and methods in the code completion. I've tried to link the CoreLocation framework to the project…
maxwell2022
  • 2,818
  • 5
  • 41
  • 60
0
votes
1 answer

Only code completion / code sense which starts with @ is not working in Xcode 6

Suddenly, only code completion which starts with @ has stopped working in all Xcode projects in Xcode 6. About a week ago, after upgrading to Xcode 6.0.1, I tried to use Debug View Hierarchy, then not only Xcode but also my entire Mac system…
Keita
  • 1,478
  • 2
  • 14
  • 18
0
votes
0 answers

Setting up Completion in Emacs' python mode

After having seen this bug fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=18582 I wonder how I setup Emacs to provide completion of imports in python-mode. Further are there other completions possible in Emacs' builtin python.el?
Nordlöw
  • 11,838
  • 10
  • 52
  • 99
0
votes
1 answer

How to Append to Completion List in Visual Studio 2013 with Javascript Intellisense Extension Tools

I've been reading through the documentation and can't figure out how to add items to the completion list for javascript intellisense in VS 2013. I understand that the items can be accessed through event.items, but pushing to this array doesn't seem…
0
votes
2 answers

Vim Shortcuts or plug-ins for the following

I have been using the Sublime editor and is making a switch to vim (Because I have to) . I have heard that Vim is the best editor there is, if you can master all the shortcuts. Given below are some of my needs. Please tell me which shortcut/plug-in …
0aslam0
  • 1,797
  • 5
  • 25
  • 42
0
votes
1 answer

PHPStorm code completion fails for array within array

I have this basic code: $test = array( 'nested' => array('test' => 'nada'); ); function doit() { global $test; $test['nested']['']; } PHPStorm correctly suggests me 'nested' when I press Ctrl+Space However, I…
John
  • 7,507
  • 3
  • 52
  • 52
0
votes
1 answer

Sublime Text 3 - Is there support for inline CSS intellisense

I'm coming from VS IDE and like ST3 a lot but still learning all the features. When I start entering inline CSS via the style attribute, VS will drop down options that match what I've typed. (i.e. if I enter "wi" I can see option for "windows",…
mwill
  • 424
  • 7
  • 21