Vscode-java: is it a way to show all method suggestion

Created on 13 Oct 2019  路  4Comments  路  Source: redhat-developer/vscode-java

image

why the code suggestion above seems to be covering most of the frame.set functions but no frame.setSize();?

and at line 6 i type it manually and it seems to be knowing what method it is

not-a-bug

Most helpful comment

@bgladosd could you try the following property:

"java.completion.filteredTypes" : [
        "java.awt.List",
        "com.sun.*"
    ],

All 4 comments

@bgladosd could you try the following property:

"java.completion.filteredTypes" : [
        "java.awt.List",
        "com.sun.*"
    ],

@snjeza I will try your solution since I have the same issue whiletrying to display the methdos from some java libraries.

UPDATE The above setting works, thank you! 馃嵃

Closing as it's working as expected, java.completion.filteredTypes preference needs to be changed to support java.awt..*

@bgladosd could you try the following property:

"java.completion.filteredTypes" : [
        "java.awt.List",
        "com.sun.*"
    ],

Thank you!!this really help a lot,this is the best portable java ide to me now

Was this page helpful?
0 / 5 - 0 ratings