Netbeans IDE - automatic typing suggestion

Hi, I am using netbeans 7 IDE for java programming and I am an acutally programmer in C # and in visual studio whenever I print everything that it displays a drop down menu with sentences, I want this to be included in the netbeans IDE without the need press CTRL + Space to display the dropdown menu

early.

+5
source share
3 answers

By default, Netbeans only gives suggestions when you place a period (i.e. for fields and methods of a class and an object).

However, you can configure autocomplete by going to

Tools> Options> Editor> Code Completion

Choose any configuration that works best for you.

Hope this help!

+9
source

Make sure that in the Code Helper (for example, Tools → Options → C / C ++ → Code Helper), in the case of C / C ++, you have added compiler directories.

You can find the used compiler in Project Properties → Build → X Compiler

0
source

The general answer to your answer, suggesting automatic code completion in the NetBeans IDE, is as follows:

  1. Go to tools
  2. select Options
  3. then click on code completion
  4. Select the necessary check boxes and click "Apply", then click "OK."
0
source

Source: https://habr.com/ru/post/1382189/


All Articles